consumer/provider restructure
[packetcable.git] / packetcable-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.packetcable</groupId>
6     <artifactId>packetcable-plugin</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>packetcable-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
30     <dependency>
31       <groupId>org.opendaylight.controller.samples</groupId>
32       <artifactId>sample-toaster-provider</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.openexi</groupId>
36       <artifactId>nagasena</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.openexi</groupId>
40       <artifactId>nagasena-rta</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.ops4j.pax.exam</groupId>
44       <artifactId>pax-exam-junit4</artifactId>
45       <version>${exam.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>equinoxSDK381</groupId>
49       <artifactId>org.eclipse.osgi</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.ops4j.pax.exam</groupId>
54       <artifactId>pax-exam-container-native</artifactId>
55       <version>${exam.version}</version>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.ops4j.pax.exam</groupId>
60       <artifactId>pax-exam-link-mvn</artifactId>
61       <version>${exam.version}</version>
62       <scope>test</scope>
63     </dependency>
64   </dependencies>
65
66   <build>
67     <plugins>
68       <plugin>
69         <artifactId>maven-checkstyle-plugin</artifactId>
70         <configuration>
71           <skip>true</skip>
72         </configuration>
73       </plugin>
74
75       <plugin>
76         <groupId>org.ops4j.pax.exam</groupId>
77         <artifactId>maven-paxexam-plugin</artifactId>
78         <executions>
79           <execution>
80             <id>generate-config</id>
81             <goals>
82               <goal>generate-depends-file</goal>
83             </goals>
84           </execution>
85         </executions>
86       </plugin>
87     </plugins>
88   </build>
89   <scm>
90     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
91     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
92     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
93   </scm>
94 </project>