Merge "Bug 4723 AAA StoreBuilder init times out too early"
[aaa.git] / aaa-authn-sts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.aaa</groupId>
7         <artifactId>aaa-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>aaa-authn-sts</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.aaa</groupId>
18             <artifactId>aaa-authn</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.aaa</groupId>
22             <artifactId>aaa-authn-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.slf4j</groupId>
26             <artifactId>slf4j-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>com.sun.jersey</groupId>
30             <artifactId>jersey-server</artifactId>
31             <scope>provided</scope>
32         </dependency>
33         <dependency>
34             <groupId>javax.servlet</groupId>
35             <artifactId>servlet-api</artifactId>
36             <scope>provided</scope>
37         </dependency>
38         <dependency>
39             <groupId>org.apache.oltu.oauth2</groupId>
40             <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
41             <scope>provided</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.apache.oltu.oauth2</groupId>
45             <artifactId>org.apache.oltu.oauth2.common</artifactId>
46             <scope>provided</scope>
47         </dependency>
48         <dependency>
49             <groupId>org.apache.oltu.oauth2</groupId>
50             <artifactId>org.apache.oltu.oauth2.resourceserver</artifactId>
51             <scope>provided</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.osgi</groupId>
55             <artifactId>org.osgi.core</artifactId>
56             <scope>provided</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.apache.felix</groupId>
60             <artifactId>org.apache.felix.dependencymanager</artifactId>
61             <scope>provided</scope>
62         </dependency>
63         <!-- Testing Dependencies -->     
64         <dependency>
65             <groupId>com.sun.jersey.jersey-test-framework</groupId>
66             <artifactId>jersey-test-framework-grizzly2</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.eclipse.jetty</groupId>
71             <artifactId>jetty-servlet-tester</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>junit</groupId>
76             <artifactId>junit</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.mockito</groupId>
81             <artifactId>mockito-all</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.slf4j</groupId>
86             <artifactId>slf4j-simple</artifactId>
87             <scope>test</scope>
88         </dependency>
89     </dependencies>
90
91     <build>
92         <plugins>
93             <plugin>
94                 <groupId>org.apache.felix</groupId>
95                 <artifactId>maven-bundle-plugin</artifactId>
96                 <extensions>true</extensions>
97                 <configuration>
98                     <instructions>
99                         <Import-Package>*,com.sun.jersey.spi.container.servlet</Import-Package>
100                         <Web-ContextPath>/oauth2</Web-ContextPath>
101                         <Bundle-Activator>org.opendaylight.aaa.sts.Activator</Bundle-Activator>
102                         <manifestLocation>${project.basedir}/META-INF</manifestLocation>
103                     </instructions>
104                 </configuration>
105             </plugin>
106         </plugins>
107     </build>
108
109 </project>