Merge "Replace FindBugs :jsr305 by full :annotation (Bug 7663)"
[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.5.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>com.sun.jersey</groupId>
26             <artifactId>jersey-server</artifactId>
27             <scope>provided</scope>
28         </dependency>
29         <dependency>
30             <groupId>javax.servlet</groupId>
31             <artifactId>javax.servlet-api</artifactId>
32             <scope>provided</scope>
33         </dependency>
34         <dependency>
35             <groupId>org.apache.oltu.oauth2</groupId>
36             <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
37             <scope>provided</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.apache.oltu.oauth2</groupId>
41             <artifactId>org.apache.oltu.oauth2.common</artifactId>
42             <scope>provided</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.apache.oltu.oauth2</groupId>
46             <artifactId>org.apache.oltu.oauth2.resourceserver</artifactId>
47             <scope>provided</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.osgi</groupId>
51             <artifactId>org.osgi.core</artifactId>
52             <scope>provided</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.apache.felix</groupId>
56             <artifactId>org.apache.felix.dependencymanager</artifactId>
57             <scope>provided</scope>
58         </dependency>
59         <!-- Testing Dependencies -->
60         <dependency>
61             <groupId>com.sun.jersey.jersey-test-framework</groupId>
62             <artifactId>jersey-test-framework-grizzly2</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.mortbay.jetty</groupId>
67             <artifactId>jetty-servlet-tester</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>junit</groupId>
72             <artifactId>junit</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.mockito</groupId>
77             <artifactId>mockito-core</artifactId>
78             <scope>test</scope>
79         </dependency>
80     </dependencies>
81
82     <build>
83         <plugins>
84             <plugin>
85                 <groupId>org.apache.felix</groupId>
86                 <artifactId>maven-bundle-plugin</artifactId>
87                 <extensions>true</extensions>
88                 <configuration>
89                     <instructions>
90                         <Import-Package>
91                             *,
92                             com.sun.jersey.spi.container.servlet
93                         </Import-Package>
94                         <Web-ContextPath>/oauth2</Web-ContextPath>
95                         <Bundle-Activator>org.opendaylight.aaa.sts.Activator</Bundle-Activator>
96                         <manifestLocation>${project.basedir}/META-INF</manifestLocation>
97                     </instructions>
98                 </configuration>
99             </plugin>
100         </plugins>
101     </build>
102
103 </project>