Merge "Added integration tests back (and cleaned up poms). Integration tests can...
[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     <packaging>jar</packaging>
18
19     <properties>
20         <features.file>features.xml</features.file>
21     </properties>
22
23     <dependencies>
24         <!-- odl-aaa-authn -->
25         <dependency>
26             <groupId>com.sun.jersey</groupId>
27             <artifactId>jersey-servlet</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.sun.jersey</groupId>
31             <artifactId>jersey-core</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>com.sun.jersey</groupId>
35             <artifactId>jersey-server</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>com.sun.jersey</groupId>
39             <artifactId>jersey-json</artifactId>
40         </dependency>       
41         <dependency>
42             <groupId>org.apache.felix</groupId>
43             <artifactId>org.apache.felix.dependencymanager</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.apache.felix</groupId>
47             <artifactId>org.apache.felix.metatype</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>net.sf.ehcache</groupId>
51             <artifactId>ehcache</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.apache.geronimo.specs</groupId>
55             <artifactId>geronimo-jta_1.1_spec</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.apache.oltu.oauth2</groupId>
59             <artifactId>org.apache.oltu.oauth2.common</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.apache.oltu.oauth2</groupId>
63             <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.apache.oltu.oauth2</groupId>
67             <artifactId>org.apache.oltu.oauth2.resourceserver</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>commons-codec</groupId>
71             <artifactId>commons-codec</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.json</groupId>
75             <artifactId>json</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.glassfish</groupId>
79             <artifactId>javax.json</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.codehaus.jackson</groupId>
83             <artifactId>jackson-core-asl</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.codehaus.jackson</groupId>
87             <artifactId>jackson-mapper-asl</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.codehaus.jackson</groupId>
91             <artifactId>jackson-jaxrs</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.codehaus.jackson</groupId>
95             <artifactId>jackson-xc</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.codehaus.jettison</groupId>
99             <artifactId>jettison</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.xerial</groupId>
103             <artifactId>sqlite-jdbc</artifactId>
104         </dependency>
105
106         <dependency>
107             <groupId>org.opendaylight.aaa</groupId>
108             <artifactId>aaa-authn-api</artifactId>
109             <version>${project.version}</version>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.aaa</groupId>
113             <artifactId>aaa-authn</artifactId>
114             <version>${project.version}</version>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.aaa</groupId>
118             <artifactId>aaa-authn-sts</artifactId>
119             <version>${project.version}</version>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.aaa</groupId>
123             <artifactId>aaa-authn-store</artifactId>
124             <version>${project.version}</version>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.aaa</groupId>
128             <artifactId>aaa-authn-basic</artifactId>
129             <version>${project.version}</version>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.aaa</groupId>
133             <artifactId>aaa-idmlight</artifactId>
134             <version>${project.version}</version>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.aaa</groupId>
138             <artifactId>aaa-authn</artifactId>
139             <version>${project.version}</version>
140             <type>cfg</type>
141             <classifier>config</classifier>
142         </dependency>
143         <dependency>
144             <groupId>org.opendaylight.aaa</groupId>
145             <artifactId>aaa-authn-store</artifactId>
146             <version>${project.version}</version>
147             <type>cfg</type>
148             <classifier>config</classifier>
149         </dependency>
150         <dependency>
151             <groupId>org.opendaylight.aaa</groupId>
152             <artifactId>aaa-authn-sts</artifactId>
153             <version>${project.version}</version>
154             <type>cfg</type>
155             <classifier>config</classifier>
156         </dependency>
157
158         <!-- odl-aaa-sssd -->
159         <dependency>
160             <groupId>org.opendaylight.aaa</groupId>
161             <artifactId>aaa-authn-sssd</artifactId>
162             <version>${project.version}</version>
163         </dependency>
164
165         <!-- odl-aaa-authz -->
166         <dependency>
167             <groupId>org.opendaylight.yangtools</groupId>
168             <artifactId>features-yangtools</artifactId>
169             <version>${yangtools.version}</version>
170             <classifier>features</classifier>
171             <type>xml</type>
172         </dependency>
173         <dependency>
174             <groupId>org.opendaylight.aaa</groupId>
175             <artifactId>aaa-authz-model</artifactId>
176             <version>${project.version}</version>
177         </dependency>
178         <dependency>
179             <groupId>org.opendaylight.aaa</groupId>
180             <artifactId>aaa-authz-service</artifactId>
181             <version>${project.version}</version>
182         </dependency>
183         <dependency>
184             <groupId>org.opendaylight.aaa</groupId>
185             <artifactId>authz-service-config</artifactId>
186             <version>${project.version}</version>
187             <type>xml</type>
188             <classifier>config</classifier>
189         </dependency>
190         <dependency>
191             <groupId>org.opendaylight.aaa</groupId>
192             <artifactId>authz-restconf-connector-config</artifactId>
193             <version>${project.version}</version>
194             <type>xml</type>
195             <classifier>config</classifier>
196         </dependency>
197         <dependency>
198             <groupId>org.opendaylight.controller</groupId>
199             <artifactId>features-mdsal</artifactId>
200             <version>${mdsal.version}</version>
201             <classifier>features</classifier>
202             <type>xml</type>
203         </dependency>
204         <dependency>
205             <groupId>org.opendaylight.controller</groupId>
206             <artifactId>features-config</artifactId>
207             <version>${config.version}</version>
208             <classifier>features</classifier>
209             <type>xml</type>
210         </dependency>
211
212         <!-- odl-aaa-authn-plugin -->
213         <dependency>
214             <groupId>org.opendaylight.controller</groupId>
215             <artifactId>features-netconf</artifactId>
216             <version>${netconf.version}</version>
217             <classifier>features</classifier>
218             <type>xml</type>
219         </dependency>
220         <dependency>
221             <groupId>org.opendaylight.aaa</groupId>
222             <artifactId>aaa-authn-odl-plugin</artifactId>
223             <version>${project.version}</version>
224         </dependency>
225         <dependency>
226             <groupId>org.opendaylight.aaa</groupId>
227             <artifactId>aaa-authn-idpmapping</artifactId>
228             <version>${project.version}</version>
229         </dependency>
230
231         <!-- test to validate features.xml -->
232         <dependency>
233             <groupId>org.opendaylight.yangtools</groupId>
234             <artifactId>features-test</artifactId>
235             <version>${yangtools.version}</version>
236             <scope>test</scope>
237         </dependency>
238         <!-- dependency for opendaylight-karaf-empty for use by testing -->
239         <dependency>
240             <groupId>org.opendaylight.controller</groupId>
241             <artifactId>opendaylight-karaf-empty</artifactId>
242             <version>${karaf.empty.version}</version>
243             <type>zip</type>
244         </dependency>
245     </dependencies>
246     <build>
247         <resources>
248             <resource>
249                 <directory>src/main/resources</directory>
250                 <filtering>true</filtering>
251             </resource>
252         </resources>
253         <plugins>
254             <plugin>
255                 <groupId>org.apache.maven.plugins</groupId>
256                 <artifactId>maven-resources-plugin</artifactId>
257                 <executions>
258                     <execution>
259                         <id>filter</id>
260                         <phase>generate-resources</phase>
261                         <goals>
262                             <goal>resources</goal>
263                         </goals>
264                     </execution>
265                 </executions>
266             </plugin>
267             <plugin>
268                 <groupId>org.codehaus.mojo</groupId>
269                 <artifactId>build-helper-maven-plugin</artifactId>
270                 <executions>
271                     <execution>
272                         <id>attach-artifacts</id>
273                         <phase>package</phase>
274                         <goals>
275                             <goal>attach-artifact</goal>
276                         </goals>
277                         <configuration>
278                             <artifacts>
279                                 <artifact>
280                                     <file>${project.build.directory}/classes/${features.file}</file>
281                                     <type>xml</type>
282                                     <classifier>features</classifier>
283                                 </artifact>
284                             </artifacts>
285                         </configuration>
286                     </execution>
287                 </executions>
288             </plugin>
289             <plugin>
290                 <groupId>org.apache.maven.plugins</groupId>
291                 <artifactId>maven-surefire-plugin</artifactId>
292                 <configuration>
293                     <systemPropertyVariables>
294                         <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
295                         <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
296                         <karaf.distro.version>${karaf.empty.version}</karaf.distro.version>
297                     </systemPropertyVariables>
298                     <dependenciesToScan>
299                         <dependency>org.opendaylight.yangtools:features-test</dependency>
300                     </dependenciesToScan>
301                 </configuration>
302             </plugin>
303         </plugins>
304     </build>
305     <scm>
306         <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
307         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
308         <tag>HEAD</tag>
309         <url>https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary</url>
310     </scm>
311 </project>