12a9e076b52684273744af3dd63ce0add4b23402
[controller.git] / itests / base-features-it / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>itests-controller</artifactId>
6         <version>1.6.0-SNAPSHOT</version>
7         <relativePath>../pom.xml</relativePath>
8     </parent>
9     <artifactId>base-features-it</artifactId>
10     <name>base-features-it</name>
11     <packaging>jar</packaging>
12     <dependencies>
13         <dependency>
14             <groupId>org.opendaylight.controller</groupId>
15             <artifactId>base-features</artifactId>
16             <version>${project.version}</version>
17             <classifier>features</classifier>
18             <type>xml</type>
19         </dependency>
20         <dependency>
21             <groupId>org.slf4j</groupId>
22             <artifactId>slf4j-api</artifactId>
23         </dependency>
24         <!-- Dependencies for pax exam karaf container -->
25         <dependency>
26             <groupId>org.ops4j.pax.exam</groupId>
27             <artifactId>pax-exam-container-karaf</artifactId>
28             <scope>test</scope>
29         </dependency>
30         <dependency>
31             <groupId>org.ops4j.pax.exam</groupId>
32             <artifactId>pax-exam-junit4</artifactId>
33             <scope>test</scope>
34         </dependency>
35         <dependency>
36             <groupId>org.ops4j.pax.exam</groupId>
37             <artifactId>pax-exam</artifactId>
38             <scope>test</scope>
39         </dependency>
40         <dependency>
41             <groupId>org.ops4j.pax.url</groupId>
42             <artifactId>pax-url-aether</artifactId>
43             <scope>test</scope>
44         </dependency>
45         <dependency>
46             <groupId>javax.inject</groupId>
47             <artifactId>javax.inject</artifactId>
48             <version>1</version>
49             <scope>test</scope>
50         </dependency>
51          <dependency>
52             <groupId>org.apache.karaf.features</groupId>
53             <artifactId>org.apache.karaf.features.core</artifactId>
54             <version>${karaf.version}</version>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58            <groupId>org.osgi</groupId>
59            <artifactId>org.osgi.core</artifactId>
60            <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65             <scope>test</scope>
66         </dependency>
67
68     </dependencies>
69
70     <build>
71         <plugins>
72             <!-- Needed if you use versionAsInProject() -->
73             <!--    <plugin>
74                 <groupId>org.apache.servicemix.tooling</groupId>
75                 <artifactId>depends-maven-plugin</artifactId>
76                 <version>1.2</version>
77                 <executions>
78                     <execution>
79                         <id>generate-depends-file</id>
80                         <goals>
81                             <goal>generate-depends-file</goal>
82                         </goals>
83                     </execution>
84                 </executions>
85             </plugin> -->
86         </plugins>
87     </build>
88 </project>