Bug 4105: Choose Owner for an Entity based on first come first served basis
[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             <version>${exam.version}</version>
29             <scope>test</scope>
30         </dependency>
31         <dependency>
32             <groupId>org.ops4j.pax.exam</groupId>
33             <artifactId>pax-exam-junit4</artifactId>
34             <scope>test</scope>
35         </dependency>
36         <dependency>
37             <groupId>org.ops4j.pax.exam</groupId>
38             <artifactId>pax-exam</artifactId>
39             <version>${exam.version}</version>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.ops4j.pax.url</groupId>
44             <artifactId>pax-url-aether</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>javax.inject</groupId>
49             <artifactId>javax.inject</artifactId>
50             <version>1</version>
51             <scope>test</scope>
52         </dependency>
53          <dependency>
54             <groupId>org.apache.karaf.features</groupId>
55             <artifactId>org.apache.karaf.features.core</artifactId>
56             <version>${karaf.version}</version>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60            <groupId>org.osgi</groupId>
61            <artifactId>org.osgi.core</artifactId>
62            <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>junit</groupId>
66             <artifactId>junit</artifactId>
67             <scope>test</scope>
68         </dependency>
69
70     </dependencies>
71
72     <build>
73         <plugins>
74             <!-- Needed if you use versionAsInProject() -->
75             <!--    <plugin>
76                 <groupId>org.apache.servicemix.tooling</groupId>
77                 <artifactId>depends-maven-plugin</artifactId>
78                 <version>1.2</version>
79                 <executions>
80                     <execution>
81                         <id>generate-depends-file</id>
82                         <goals>
83                             <goal>generate-depends-file</goal>
84                         </goals>
85                     </execution>
86                 </executions>
87             </plugin> -->
88         </plugins>
89     </build>
90 </project>