Fix license header violations in aaa-authn-sssd
[aaa.git] / aaa-authn-keystone / 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-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>aaa-authn-keystone</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         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.aaa</groupId>
23             <artifactId>aaa-authn-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.slf4j</groupId>
27             <artifactId>slf4j-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.sun.jersey</groupId>
31             <artifactId>jersey-server</artifactId>
32             <scope>provided</scope>
33         </dependency>
34         <dependency>
35             <groupId>javax.servlet</groupId>
36             <artifactId>servlet-api</artifactId>
37             <scope>provided</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.osgi</groupId>
41             <artifactId>org.osgi.core</artifactId>
42             <scope>provided</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.apache.felix</groupId>
46             <artifactId>org.apache.felix.dependencymanager</artifactId>
47             <scope>provided</scope>
48         </dependency>
49         <dependency>
50             <groupId>com.fasterxml.jackson.core</groupId>
51             <artifactId>jackson-annotations</artifactId>
52             <scope>provided</scope>
53         </dependency>
54         <dependency>
55             <groupId>com.fasterxml.jackson.core</groupId>
56             <artifactId>jackson-core</artifactId>
57             <scope>provided</scope>
58         </dependency>
59         <dependency>
60             <groupId>com.fasterxml.jackson.core</groupId>
61             <artifactId>jackson-databind</artifactId>
62             <scope>provided</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.apache.httpcomponents</groupId>
66             <artifactId>httpcore-osgi</artifactId>
67             <version>${httpclient.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.apache.httpcomponents</groupId>
71             <artifactId>httpclient-osgi</artifactId>
72             <version>${httpclient.version}</version>
73         </dependency>
74         <!-- Testing Dependencies -->
75         <dependency>
76             <groupId>com.sun.jersey.jersey-test-framework</groupId>
77             <artifactId>jersey-test-framework-grizzly2</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>junit</groupId>
82             <artifactId>junit</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.slf4j</groupId>
87             <artifactId>slf4j-simple</artifactId>
88             <scope>test</scope>
89         </dependency>
90     </dependencies>
91
92     <build>
93         <plugins>
94             <plugin>
95                 <groupId>org.apache.felix</groupId>
96                 <artifactId>maven-bundle-plugin</artifactId>
97                 <extensions>true</extensions>
98                 <configuration>
99                     <instructions>
100                         <Bundle-Activator>org.opendaylight.aaa.keystone.Activator</Bundle-Activator>
101                     </instructions>
102                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
103                 </configuration>
104             </plugin>
105         </plugins>
106     </build>
107 </project>