Bump odlparent/yangtools/mdsal
[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>1.12.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>sal-remoterpc-connector</artifactId>
13     <version>1.12.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>com.typesafe.akka</groupId>
19             <artifactId>akka-actor_2.13</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>com.typesafe.akka</groupId>
23             <artifactId>akka-cluster_2.13</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>com.typesafe.akka</groupId>
27             <artifactId>akka-remote_2.13</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.typesafe.akka</groupId>
31             <artifactId>akka-testkit_2.13</artifactId>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>com.typesafe.akka</groupId>
36             <artifactId>akka-osgi_2.13</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>com.typesafe.akka</groupId>
40             <artifactId>akka-slf4j_2.13</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.typesafe.akka</groupId>
44             <artifactId>akka-persistence_2.13</artifactId>
45         </dependency>
46         <!-- SAL Dependencies -->
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>sal-common-util</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53            <artifactId>mdsal-dom-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal</groupId>
57            <artifactId>mdsal-dom-spi</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-clustering-commons</artifactId>
62         </dependency>
63         <!-- Yang tools-->
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-model-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.yangtools</groupId>
74             <artifactId>yang-data-impl</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.yangtools</groupId>
78             <artifactId>yang-common</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.osgi</groupId>
82             <artifactId>org.osgi.core</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.slf4j</groupId>
86             <artifactId>slf4j-api</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.scala-lang</groupId>
90             <artifactId>scala-library</artifactId>
91         </dependency>
92         <!-- Test Dependencies -->
93         <dependency>
94             <groupId>org.mockito</groupId>
95             <artifactId>mockito-core</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.slf4j</groupId>
100             <artifactId>slf4j-simple</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>com.google.collections</groupId>
105             <artifactId>google-collections</artifactId>
106             <version>1.0</version>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.yangtools</groupId>
111             <artifactId>yang-test-util</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.controller</groupId>
115             <artifactId>sal-akka-raft</artifactId>
116             <type>test-jar</type>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>commons-lang</groupId>
121             <artifactId>commons-lang</artifactId>
122             <scope>test</scope>
123         </dependency>
124     </dependencies>
125
126     <build>
127         <plugins>
128             <plugin>
129                 <groupId>org.apache.felix</groupId>
130                 <artifactId>maven-bundle-plugin</artifactId>
131                 <extensions>true</extensions>
132                 <configuration>
133                     <instructions>
134                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
135                         <Export-package/>
136                         <Import-Package>
137                             org.opendaylight.controller.cluster;
138                             *
139                         </Import-Package>
140                     </instructions>
141                 </configuration>
142             </plugin>
143         </plugins>
144     </build>
145
146     <scm>
147         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
148         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
149         <tag>HEAD</tag>
150         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
151     </scm>
152
153 </project>