Bumping Snapshots version following lithium branch cut
[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.project</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath>../</relativePath>
10     </parent>
11
12     <artifactId>aaa-authn-sts</artifactId>
13     <version>0.3.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.aaa</groupId>
19             <artifactId>aaa-authn</artifactId>
20             <version>${project.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.aaa</groupId>
24             <artifactId>aaa-authn-api</artifactId>
25             <version>${project.version}</version>
26         </dependency>
27         <dependency>
28             <groupId>org.slf4j</groupId>
29             <artifactId>slf4j-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>com.sun.jersey</groupId>
33             <artifactId>jersey-server</artifactId>
34             <scope>provided</scope>
35         </dependency>
36         <dependency>
37             <groupId>javax.servlet</groupId>
38             <artifactId>servlet-api</artifactId>
39             <scope>provided</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.apache.oltu.oauth2</groupId>
43             <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
44             <scope>provided</scope>
45         </dependency>
46         <dependency>
47             <groupId>org.apache.oltu.oauth2</groupId>
48             <artifactId>org.apache.oltu.oauth2.common</artifactId>
49             <scope>provided</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.apache.oltu.oauth2</groupId>
53             <artifactId>org.apache.oltu.oauth2.resourceserver</artifactId>
54             <scope>provided</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.osgi</groupId>
58             <artifactId>org.osgi.core</artifactId>
59             <scope>provided</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.apache.felix</groupId>
63             <artifactId>org.apache.felix.dependencymanager</artifactId>
64             <scope>provided</scope>
65         </dependency>
66         <!-- Testing Dependencies -->     
67         <dependency>
68             <groupId>com.sun.jersey.jersey-test-framework</groupId>
69             <artifactId>jersey-test-framework-grizzly2</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.eclipse.jetty</groupId>
74             <artifactId>jetty-servlet-tester</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.mockito</groupId>
84             <artifactId>mockito-all</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.slf4j</groupId>
89             <artifactId>slf4j-simple</artifactId>
90             <scope>test</scope>
91         </dependency>
92     </dependencies>
93
94     <build>
95         <plugins>
96             <plugin>
97                 <groupId>org.apache.felix</groupId>
98                 <artifactId>maven-bundle-plugin</artifactId>
99                 <extensions>true</extensions>
100                 <configuration>
101                     <instructions>
102                         <Import-Package>*,com.sun.jersey.spi.container.servlet</Import-Package>
103                         <Web-ContextPath>/oauth2</Web-ContextPath>
104                         <Bundle-Activator>org.opendaylight.aaa.sts.Activator</Bundle-Activator>
105                         <manifestLocation>${project.basedir}/META-INF</manifestLocation>
106                     </instructions>
107                 </configuration>
108             </plugin>
109         </plugins>
110     </build>
111
112 </project>