Merge "creating a default subnet"
[controller.git] / opendaylight / md-sal / test / zeromq-test-provider / 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-test-parent</artifactId>
6         <groupId>org.opendaylight.controller.tests</groupId>
7         <version>1.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>zeromq-test-provider</artifactId>
10   <packaging>bundle</packaging>
11   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15   </scm>
16
17
18   <build>
19     <plugins>
20       <plugin>
21         <groupId>org.apache.felix</groupId>
22         <artifactId>maven-bundle-plugin</artifactId>
23         <configuration>
24           <instructions>
25             <Bundle-Activator>org.opendaylight.controller.sample.zeromq.provider.ExampleProvider</Bundle-Activator>
26           </instructions>
27         </configuration>
28       </plugin>
29     </plugins>
30   </build>
31
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-binding-api</artifactId>
36       <version>1.0-SNAPSHOT</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-common-util</artifactId>
41       <version>1.0-SNAPSHOT</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-core-api</artifactId>
46       <version>1.0-SNAPSHOT</version>
47     </dependency>
48
49
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>containermanager</artifactId>
53       <version>0.5.1-SNAPSHOT</version>
54     </dependency>
55
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal</artifactId>
59       <version>0.5.1-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>yang-binding</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.yangtools</groupId>
67       <artifactId>yang-common</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.yangtools</groupId>
71       <artifactId>yang-data-api</artifactId>
72     </dependency>
73
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>sal-common-util</artifactId>
77       <version>1.0-SNAPSHOT</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>sal-zeromq-connector</artifactId>
82       <version>1.0-SNAPSHOT</version>
83     </dependency>
84
85   </dependencies>
86 </project>