Merge "method unsetFlowProgrammerNotifier was mis-spelled in activator causing the...
[controller.git] / opendaylight / md-sal / samples / toaster-it / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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         <artifactId>sal-samples</artifactId>
6         <groupId>org.opendaylight.controller.samples</groupId>
7         <version>1.1-SNAPSHOT</version>
8     </parent>
9     <artifactId>sample-toaster-it</artifactId>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14     </scm>
15
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.ops4j.pax.exam</groupId>
21                 <artifactId>maven-paxexam-plugin</artifactId>
22                 <version>1.2.4</version>
23                 <executions>
24                     <execution>
25                         <id>generate-config</id>
26                         <goals>
27                             <goal>generate-depends-file</goal>
28                         </goals>
29                     </execution>
30                 </executions>
31             </plugin>
32         </plugins>
33     </build>
34
35     <dependencies>
36         <dependency>
37             <groupId>org.opendaylight.controller</groupId>
38             <artifactId>sal-binding-it</artifactId>
39             <version>1.1-SNAPSHOT</version>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.controller.samples</groupId>
43             <artifactId>sample-toaster-consumer</artifactId>
44             <version>1.1-SNAPSHOT</version>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller.samples</groupId>
48             <artifactId>sample-toaster-provider</artifactId>
49             <version>1.1-SNAPSHOT</version>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller.samples</groupId>
53             <artifactId>sample-toaster</artifactId>
54             <version>1.1-SNAPSHOT</version>
55         </dependency>
56
57         <dependency>
58             <groupId>junit</groupId>
59             <artifactId>junit</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.ops4j.pax.exam</groupId>
63             <artifactId>pax-exam-junit4</artifactId>
64             <version>${exam.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>org.ops4j.pax.exam</groupId>
68             <artifactId>pax-exam-link-mvn</artifactId>
69             <version>${exam.version}</version>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.ops4j.pax.exam</groupId>
74             <artifactId>pax-exam-container-native</artifactId>
75             <version>${exam.version}</version>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>equinoxSDK381</groupId>
80             <artifactId>org.eclipse.osgi</artifactId>
81             <version>3.8.1.v20120830-144521</version>
82             <scope>test</scope>
83         </dependency>
84     </dependencies>
85 </project>