BUG-2637: migration consequence - fix unit test
[controller.git] / opendaylight / md-sal / samples / toaster-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller.samples</groupId>
6     <artifactId>sal-samples</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sample-toaster-it</artifactId>
10
11   <dependencies>
12
13     <dependency>
14       <groupId>junit</groupId>
15       <artifactId>junit</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>sal-binding-it</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller.samples</groupId>
23       <artifactId>sample-toaster</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller.samples</groupId>
27       <artifactId>sample-toaster-consumer</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.yangtools.model</groupId>
31       <artifactId>yang-ext</artifactId>
32     </dependency>
33     <!-- TODO: remove in migration final cleaning phase -->
34     <dependency>
35       <groupId>org.opendaylight.controller.model</groupId>
36       <artifactId>model-flow-base</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller.model</groupId>
40       <artifactId>model-flow-service</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller.model</groupId>
44       <artifactId>model-flow-statistics</artifactId>
45     </dependency>
46     <!-- ^^^ -->
47
48     <dependency>
49       <groupId>org.opendaylight.controller.samples</groupId>
50       <artifactId>sample-toaster-provider</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.openexi</groupId>
54       <artifactId>nagasena</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.openexi</groupId>
58       <artifactId>nagasena-rta</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.ops4j.pax.exam</groupId>
62       <artifactId>pax-exam-junit4</artifactId>
63       <version>${exam.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>equinoxSDK381</groupId>
67       <artifactId>org.eclipse.osgi</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.ops4j.pax.exam</groupId>
72       <artifactId>pax-exam-container-native</artifactId>
73       <version>${exam.version}</version>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.ops4j.pax.exam</groupId>
78       <artifactId>pax-exam-link-mvn</artifactId>
79       <version>${exam.version}</version>
80       <scope>test</scope>
81     </dependency>
82   </dependencies>
83
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.ops4j.pax.exam</groupId>
88         <artifactId>maven-paxexam-plugin</artifactId>
89         <executions>
90           <execution>
91             <id>generate-config</id>
92             <goals>
93               <goal>generate-depends-file</goal>
94             </goals>
95           </execution>
96         </executions>
97       </plugin>
98     </plugins>
99   </build>
100   <scm>
101     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
102     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
103     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
104   </scm>
105 </project>