Merge "Add README and CONTRIBUTING files"
[odlparent.git] / features-test / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>1.7.0-SNAPSHOT</version>
17         <relativePath>../bundle-parent</relativePath>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <artifactId>features-test</artifactId>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <!-- Dependencies for pax exam karaf container -->
26         <dependency>
27             <groupId>org.ops4j.pax.exam</groupId>
28             <artifactId>pax-exam-container-karaf</artifactId>
29             <scope>compile</scope>
30         </dependency>
31         <dependency>
32             <groupId>org.ops4j.pax.exam</groupId>
33             <artifactId>pax-exam-junit4</artifactId>
34             <scope>compile</scope>
35         </dependency>
36         <dependency>
37             <groupId>org.ops4j.pax.exam</groupId>
38             <artifactId>pax-exam</artifactId>
39             <scope>compile</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.ops4j.pax.url</groupId>
43             <artifactId>pax-url-aether</artifactId>
44             <scope>compile</scope>
45         </dependency>
46         <dependency>
47             <groupId>javax.inject</groupId>
48             <artifactId>javax.inject</artifactId>
49             <version>1</version>
50             <scope>compile</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.apache.karaf.features</groupId>
54             <artifactId>org.apache.karaf.features.core</artifactId>
55             <version>${karaf.version}</version>
56             <scope>compile</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.osgi</groupId>
60             <artifactId>org.osgi.core</artifactId>
61             <scope>compile</scope>
62         </dependency>
63         <dependency>
64             <groupId>junit</groupId>
65             <artifactId>junit</artifactId>
66             <scope>compile</scope>
67         </dependency>
68         <dependency>
69             <groupId>commons-io</groupId>
70             <artifactId>commons-io</artifactId>
71             <scope>compile</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.apache.karaf.tooling</groupId>
75             <artifactId>karaf-maven-plugin</artifactId>
76             <version>${karaf.version}</version>
77         </dependency>
78     </dependencies>
79
80     <build>
81         <resources>
82             <resource>
83                 <directory>src/main/resources</directory>
84                 <filtering>true</filtering>
85             </resource>
86         </resources>
87         <plugins>
88             <plugin>
89                 <groupId>org.apache.felix</groupId>
90                 <artifactId>maven-bundle-plugin</artifactId>
91             </plugin>
92         </plugins>
93     </build>
94
95   <!--
96     Maven Site Configuration
97
98     The following configuration is necessary for maven-site-plugin to
99     correctly identify the correct deployment path for OpenDaylight Maven
100     sites.
101   -->
102   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
103
104   <distributionManagement>
105     <site>
106       <id>opendaylight-site</id>
107       <url>${nexus.site.url}/${project.artifactId}/</url>
108     </site>
109   </distributionManagement>
110 </project>