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