Merge "Revert "Bug 2515 - Jersey to support JAX-RS 2.0""
[aaa.git] / aaa-authn-sssd / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.aaa</groupId>
6     <artifactId>aaa-parent</artifactId>
7     <version>0.3.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>aaa-authn-sssd</artifactId>
12   <version>0.3.0-SNAPSHOT</version>
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.glassfish</groupId>
26       <artifactId>javax.json</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.aaa</groupId>
30       <artifactId>aaa-authn-idpmapping</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.slf4j</groupId>
34       <artifactId>slf4j-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>com.sun.jersey</groupId>
38       <artifactId>jersey-server</artifactId>
39       <scope>provided</scope>
40     </dependency>
41     <dependency>
42       <groupId>javax.servlet</groupId>
43       <artifactId>servlet-api</artifactId>
44       <scope>provided</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.osgi</groupId>
48       <artifactId>org.osgi.core</artifactId>
49       <scope>provided</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.apache.felix</groupId>
53       <artifactId>org.apache.felix.dependencymanager</artifactId>
54       <scope>provided</scope>
55     </dependency>    
56     <!-- Testing Dependencies -->
57     <dependency>
58       <groupId>com.sun.jersey.jersey-test-framework</groupId>
59       <artifactId>jersey-test-framework-grizzly2</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.slf4j</groupId>
69       <artifactId>slf4j-simple</artifactId>
70       <scope>test</scope>
71     </dependency>
72   </dependencies>
73
74   <build>
75     <plugins>
76       <plugin>
77         <groupId>org.apache.felix</groupId>
78         <artifactId>maven-bundle-plugin</artifactId>
79         <extensions>true</extensions>
80         <configuration>
81           <instructions>
82             <Bundle-Activator>org.opendaylight.aaa.sssd.Activator</Bundle-Activator>
83           </instructions>
84           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
85         </configuration>
86       </plugin>
87     </plugins>
88   </build>
89 </project>