Add aaa-artifacts
[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>commons.aaa</artifactId>
7     <version>0.3.0-SNAPSHOT</version>
8     <relativePath>../commons/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       <version>${glassfish.json.version}</version>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.aaa</groupId>
31       <artifactId>aaa-authn-idpmapping</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.slf4j</groupId>
35       <artifactId>slf4j-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>com.sun.jersey</groupId>
39       <artifactId>jersey-server</artifactId>
40       <scope>provided</scope>
41     </dependency>
42     <dependency>
43       <groupId>javax.servlet</groupId>
44       <artifactId>servlet-api</artifactId>
45       <scope>provided</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.osgi</groupId>
49       <artifactId>org.osgi.core</artifactId>
50       <scope>provided</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.apache.felix</groupId>
54       <artifactId>org.apache.felix.dependencymanager</artifactId>
55       <scope>provided</scope>
56     </dependency>    
57     <!-- Testing Dependencies -->
58     <dependency>
59       <groupId>com.sun.jersey.jersey-test-framework</groupId>
60       <artifactId>jersey-test-framework-grizzly2</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>junit</groupId>
65       <artifactId>junit</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.slf4j</groupId>
70       <artifactId>slf4j-simple</artifactId>
71       <scope>test</scope>
72     </dependency>
73   </dependencies>
74
75   <build>
76     <plugins>
77       <plugin>
78         <groupId>org.apache.felix</groupId>
79         <artifactId>maven-bundle-plugin</artifactId>
80         <extensions>true</extensions>
81         <configuration>
82           <instructions>
83             <Bundle-Activator>org.opendaylight.aaa.sssd.Activator</Bundle-Activator>
84           </instructions>
85           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
86         </configuration>
87       </plugin>
88     </plugins>
89   </build>
90 </project>