Merge "Moved configs to their respective bundles and added config for ClaimAuth"
[aaa.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2014 Hewlett-Packard Development Company, L.P. and others. 
3     All rights reserved. This program and the accompanying materials are made 
4     available under the terms of the Eclipse Public License v1.0 which accompanies 
5     this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9     <parent>
10         <artifactId>aaa.project</artifactId>
11         <groupId>org.opendaylight.aaa</groupId>
12         <version>0.1.0-SNAPSHOT</version>
13         <relativePath>../</relativePath>
14     </parent>
15
16     <artifactId>features-aaa</artifactId>
17     <groupId>org.opendaylight.aaa</groupId>
18     <packaging>jar</packaging>
19
20     <properties>
21         <features.file>features.xml</features.file>
22         <branding.version>1.0.0-SNAPSHOT</branding.version>
23         <karaf.resources.version>1.4.2-SNAPSHOT</karaf.resources.version>
24         <karaf.version>3.0.1</karaf.version>
25         <feature.test.version>0.6.2-SNAPSHOT</feature.test.version>
26         <karaf.empty.version>1.4.2-SNAPSHOT</karaf.empty.version>
27         <surefire.version>2.16</surefire.version>
28     </properties>
29
30     <dependencies>
31         <!-- odl-aaa-authn -->
32         <dependency>
33             <groupId>com.sun.jersey</groupId>
34             <artifactId>jersey-servlet</artifactId>
35             <version>1.17</version>
36         </dependency>
37         <dependency>
38             <groupId>com.sun.jersey</groupId>
39             <artifactId>jersey-core</artifactId>
40             <version>1.17</version>
41         </dependency>
42         <dependency>
43             <groupId>com.sun.jersey</groupId>
44             <artifactId>jersey-server</artifactId>
45             <version>1.17</version>
46         </dependency>
47         <dependency>
48             <groupId>org.apache.felix</groupId>
49             <artifactId>org.apache.felix.dependencymanager</artifactId>
50             <version>3.1.0</version>
51         </dependency>
52         <dependency>
53             <groupId>org.apache.felix</groupId>
54             <artifactId>org.apache.felix.metatype</artifactId>
55             <version>1.0.10</version>
56         </dependency>
57         <dependency>
58             <groupId>net.sf.ehcache</groupId>
59             <artifactId>ehcache</artifactId>
60             <version>2.8.3</version>
61         </dependency>
62         <dependency>
63             <groupId>org.apache.geronimo.specs</groupId>
64             <artifactId>geronimo-jta_1.1_spec</artifactId>
65             <version>1.1.1</version>
66         </dependency>
67         <dependency>
68             <groupId>org.apache.oltu.oauth2</groupId>
69             <artifactId>org.apache.oltu.oauth2.common</artifactId>
70             <version>1.0.0</version>
71         </dependency>
72         <dependency>
73             <groupId>org.apache.oltu.oauth2</groupId>
74             <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
75             <version>1.0.0</version>
76         </dependency>
77         <dependency>
78             <groupId>org.apache.oltu.oauth2</groupId>
79             <artifactId>org.apache.oltu.oauth2.resourceserver</artifactId>
80             <version>1.0.0</version>
81         </dependency>
82         <dependency>
83             <groupId>commons-codec</groupId>
84             <artifactId>commons-codec</artifactId>
85             <version>1.8</version>
86         </dependency>
87         <dependency>
88             <groupId>org.json</groupId>
89             <artifactId>json</artifactId>
90             <version>20131018</version>
91         </dependency>
92         <dependency>
93             <groupId>com.sun.jersey</groupId>
94             <artifactId>jersey-json</artifactId>
95             <version>1.17</version>
96         </dependency>
97         <dependency>
98             <groupId>org.codehaus.jackson</groupId>
99             <artifactId>jackson-core-asl</artifactId>
100             <version>1.9.2</version>
101         </dependency>
102         <dependency>
103             <groupId>org.codehaus.jackson</groupId>
104             <artifactId>jackson-mapper-asl</artifactId>
105             <version>1.9.2</version>
106         </dependency>
107         <dependency>
108             <groupId>org.codehaus.jackson</groupId>
109             <artifactId>jackson-jaxrs</artifactId>
110             <version>1.9.2</version>
111         </dependency>
112         <dependency>
113             <groupId>org.codehaus.jackson</groupId>
114             <artifactId>jackson-xc</artifactId>
115             <version>1.9.2</version>
116         </dependency>
117         <dependency>
118             <groupId>org.codehaus.jettison</groupId>
119             <artifactId>jettison</artifactId>
120             <version>1.1</version>
121         </dependency>
122         <dependency>
123             <groupId>org.xerial</groupId>
124             <artifactId>sqlite-jdbc</artifactId>
125             <version>3.7.2</version>
126         </dependency>
127
128         <dependency>
129             <groupId>org.opendaylight.aaa</groupId>
130             <artifactId>aaa-authn-api</artifactId>
131             <version>${project.version}</version>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.aaa</groupId>
135             <artifactId>aaa-authn</artifactId>
136             <version>${project.version}</version>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.aaa</groupId>
140             <artifactId>aaa-authn-sts</artifactId>
141             <version>${project.version}</version>
142         </dependency>
143         <dependency>
144             <groupId>org.opendaylight.aaa</groupId>
145             <artifactId>aaa-authn-store</artifactId>
146             <version>${project.version}</version>
147         </dependency>
148         <dependency>
149             <groupId>org.opendaylight.aaa</groupId>
150             <artifactId>aaa-authn-basic</artifactId>
151             <version>${project.version}</version>
152         </dependency>
153         <dependency>
154             <groupId>org.opendaylight.aaa</groupId>
155             <artifactId>aaa-idmlight</artifactId>
156             <version>${project.version}</version>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.aaa</groupId>
160             <artifactId>aaa-authn</artifactId>
161             <version>${project.version}</version>
162             <type>cfg</type>
163             <classifier>config</classifier>
164         </dependency>
165         <dependency>
166             <groupId>org.opendaylight.aaa</groupId>
167             <artifactId>aaa-authn-store</artifactId>
168             <version>${project.version}</version>
169             <type>cfg</type>
170             <classifier>config</classifier>
171         </dependency>
172         <dependency>
173             <groupId>org.opendaylight.aaa</groupId>
174             <artifactId>aaa-authn-sts</artifactId>
175             <version>${project.version}</version>
176             <type>cfg</type>
177             <classifier>config</classifier>
178         </dependency>
179
180         <!-- odl-aaa-sssd -->
181         <dependency>
182             <groupId>org.opendaylight.aaa</groupId>
183             <artifactId>aaa-authn-sssd</artifactId>
184             <version>${project.version}</version>
185         </dependency>
186
187         <!-- odl-aaa-authz -->
188         <dependency>
189             <groupId>org.opendaylight.yangtools</groupId>
190             <artifactId>features-yangtools</artifactId>
191             <version>${yangtools.version}</version>
192             <classifier>features</classifier>
193             <type>xml</type>
194         </dependency>
195         <dependency>
196             <groupId>org.opendaylight.aaa</groupId>
197             <artifactId>aaa-authz-model</artifactId>
198             <version>${project.version}</version>
199         </dependency>
200
201         <!-- test to validate features.xml -->
202         <dependency>
203             <groupId>org.opendaylight.yangtools</groupId>
204             <artifactId>features-test</artifactId>
205             <version>${feature.test.version}</version>
206             <scope>test</scope>
207         </dependency>
208         <!-- dependency for opendaylight-karaf-empty for use by testing -->
209         <dependency>
210             <groupId>org.opendaylight.controller</groupId>
211             <artifactId>opendaylight-karaf-empty</artifactId>
212             <version>${karaf.empty.version}</version>
213             <type>zip</type>
214         </dependency>
215     </dependencies>
216     <build>
217         <resources>
218             <resource>
219                 <directory>src/main/resources</directory>
220                 <filtering>true</filtering>
221             </resource>
222         </resources>
223         <plugins>
224             <plugin>
225                 <groupId>org.apache.maven.plugins</groupId>
226                 <artifactId>maven-resources-plugin</artifactId>
227                 <executions>
228                     <execution>
229                         <id>filter</id>
230                         <phase>generate-resources</phase>
231                         <goals>
232                             <goal>resources</goal>
233                         </goals>
234                     </execution>
235                 </executions>
236             </plugin>
237             <plugin>
238                 <groupId>org.codehaus.mojo</groupId>
239                 <artifactId>build-helper-maven-plugin</artifactId>
240                 <executions>
241                     <execution>
242                         <id>attach-artifacts</id>
243                         <phase>package</phase>
244                         <goals>
245                             <goal>attach-artifact</goal>
246                         </goals>
247                         <configuration>
248                             <artifacts>
249                                 <artifact>
250                                     <file>${project.build.directory}/classes/${features.file}</file>
251                                     <type>xml</type>
252                                     <classifier>features</classifier>
253                                 </artifact>
254                             </artifacts>
255                         </configuration>
256                     </execution>
257                 </executions>
258             </plugin>
259             <plugin>
260                 <groupId>org.apache.maven.plugins</groupId>
261                 <artifactId>maven-surefire-plugin</artifactId>
262                 <version>${surefire.version}</version>
263                 <configuration>
264                     <systemPropertyVariables>
265                         <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
266                         <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
267                         <karaf.distro.version>${karaf.empty.version}</karaf.distro.version>
268                     </systemPropertyVariables>
269                     <dependenciesToScan>
270                         <dependency>org.opendaylight.yangtools:features-test</dependency>
271                     </dependenciesToScan>
272                 </configuration>
273             </plugin>
274         </plugins>
275     </build>
276     <scm>
277         <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
278         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
279         <tag>HEAD</tag>
280         <url>https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary</url>
281     </scm>
282 </project>