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