Remove redundant restconf connector config file
[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.project</artifactId>
7     <version>0.2.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10
11   <artifactId>aaa-authn-sssd</artifactId>
12   <version>0.2.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.aaa</groupId>
18       <artifactId>aaa-authn</artifactId>
19       <version>${project.version}</version>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.aaa</groupId>
23       <artifactId>aaa-authn-api</artifactId>
24       <version>${project.version}</version>
25     </dependency>
26     <dependency>
27       <groupId>org.glassfish</groupId>
28       <artifactId>javax.json</artifactId>
29       <version>${glassfish.json.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.aaa</groupId>
33       <artifactId>aaa-authn-idpmapping</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>org.slf4j</groupId>
38       <artifactId>slf4j-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>com.sun.jersey</groupId>
42       <artifactId>jersey-server</artifactId>
43       <scope>provided</scope>
44     </dependency>
45     <dependency>
46       <groupId>javax.servlet</groupId>
47       <artifactId>servlet-api</artifactId>
48       <scope>provided</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.osgi</groupId>
52       <artifactId>org.osgi.core</artifactId>
53       <scope>provided</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.apache.felix</groupId>
57       <artifactId>org.apache.felix.dependencymanager</artifactId>
58       <scope>provided</scope>
59     </dependency>    
60     <!-- Testing Dependencies -->
61     <dependency>
62       <groupId>com.sun.jersey.jersey-test-framework</groupId>
63       <artifactId>jersey-test-framework-grizzly2</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>junit</groupId>
68       <artifactId>junit</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.slf4j</groupId>
73       <artifactId>slf4j-simple</artifactId>
74       <scope>test</scope>
75     </dependency>
76   </dependencies>
77
78   <build>
79     <plugins>
80       <plugin>
81         <groupId>org.apache.felix</groupId>
82         <artifactId>maven-bundle-plugin</artifactId>
83         <extensions>true</extensions>
84         <configuration>
85           <instructions>
86             <Bundle-Activator>org.opendaylight.aaa.sssd.Activator</Bundle-Activator>
87           </instructions>
88           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
89         </configuration>
90       </plugin>
91     </plugins>
92   </build>
93 </project>