Fixed for bug : 1171 - issue while creating subnet
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / integrationtest / provider-service / 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-remoterpc-connector-test-parent</artifactId>
6         <groupId>org.opendaylight.controller.tests</groupId>
7         <version>1.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-remoterpc-connector-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     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-common-util</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-core-api</artifactId>
44     </dependency>
45
46
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>containermanager</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.yangtools</groupId>
58       <artifactId>yang-binding</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>yang-common</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.yangtools</groupId>
66       <artifactId>yang-data-api</artifactId>
67     </dependency>
68         <dependency>
69       <groupId>org.opendaylight.yangtools</groupId>
70       <artifactId>yang-data-impl</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-common-util</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-remoterpc-connector</artifactId>
79     </dependency>
80
81   </dependencies>
82 </project>