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