Bump versions to 7.0.7-SNAPSHOT
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / 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</groupId>
6         <artifactId>mdsal-parent</artifactId>
7         <version>7.0.7-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>sal-remoterpc-connector</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>org.opendaylight.controller</groupId>
17             <artifactId>repackaged-akka</artifactId>
18         </dependency>
19         <!-- SAL Dependencies -->
20         <dependency>
21             <groupId>org.opendaylight.controller</groupId>
22             <artifactId>sal-common-util</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.mdsal</groupId>
26            <artifactId>mdsal-dom-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.mdsal</groupId>
30            <artifactId>mdsal-dom-spi</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>sal-clustering-commons</artifactId>
35         </dependency>
36         <!-- Yang tools-->
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-data-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>yang-model-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-data-impl</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-common</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.osgi</groupId>
55             <artifactId>org.osgi.service.component.annotations</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.osgi</groupId>
59             <artifactId>org.osgi.service.metatype.annotations</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.scala-lang</groupId>
63             <artifactId>scala-library</artifactId>
64         </dependency>
65         <!-- Test Dependencies -->
66         <dependency>
67             <groupId>com.typesafe.akka</groupId>
68             <artifactId>akka-testkit_2.13</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.slf4j</groupId>
72             <artifactId>slf4j-simple</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>com.google.collections</groupId>
77             <artifactId>google-collections</artifactId>
78             <version>1.0</version>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>yang-test-util</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-akka-raft</artifactId>
88             <type>test-jar</type>
89             <scope>test</scope>
90         </dependency>
91     </dependencies>
92
93     <build>
94         <plugins>
95             <plugin>
96                 <groupId>org.apache.felix</groupId>
97                 <artifactId>maven-bundle-plugin</artifactId>
98                 <extensions>true</extensions>
99                 <configuration>
100                     <instructions>
101                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
102                         <Export-package/>
103                         <Import-Package>
104                             org.opendaylight.controller.cluster;
105                             *
106                         </Import-Package>
107                     </instructions>
108                 </configuration>
109             </plugin>
110         </plugins>
111     </build>
112
113     <scm>
114         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
115         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
116         <tag>HEAD</tag>
117         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
118     </scm>
119
120 </project>