Merge "BUG 484 Anyxml normalized node"
[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     </dependency>
18
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>sal</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal-binding-api</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal-common-util</artifactId>
30     </dependency>
31
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-common-util</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-core-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>yang-binding</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-common</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>yang-data-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>yang-data-impl</artifactId>
55       <version>${yangtools.version}</version>
56     </dependency>
57   </dependencies>
58
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.apache.felix</groupId>
63         <artifactId>maven-bundle-plugin</artifactId>
64         <configuration>
65           <instructions>
66             <Bundle-Activator>org.opendaylight.controller.sample.zeromq.consumer.ExampleConsumer</Bundle-Activator>
67           </instructions>
68         </configuration>
69       </plugin>
70     </plugins>
71   </build>
72   <scm>
73     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
74     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
75     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
76   </scm>
77 </project>