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