Bump odlparent/yangtools/mdsal
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / 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   <artifactId>sal-distributed-datastore</artifactId>
12   <version>1.12.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <!-- Java -->
17     <dependency>
18       <groupId>org.slf4j</groupId>
19       <artifactId>slf4j-simple</artifactId>
20       <scope>test</scope>
21     </dependency>
22
23     <dependency>
24       <groupId>org.osgi</groupId>
25       <artifactId>org.osgi.core</artifactId>
26     </dependency>
27
28     <!-- Akka -->
29     <dependency>
30       <groupId>com.typesafe.akka</groupId>
31       <artifactId>akka-actor_2.13</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.typesafe.akka</groupId>
35       <artifactId>akka-cluster_2.13</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>com.typesafe.akka</groupId>
39       <artifactId>akka-osgi_2.13</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>com.typesafe.akka</groupId>
43       <artifactId>akka-persistence_2.13</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>com.typesafe.akka</groupId>
47       <artifactId>akka-remote_2.13</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>com.typesafe.akka</groupId>
51       <artifactId>akka-slf4j_2.13</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.scala-lang.modules</groupId>
55       <artifactId>scala-java8-compat_2.13</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>com.typesafe.akka</groupId>
59       <artifactId>akka-testkit_2.13</artifactId>
60       <scope>test</scope>
61     </dependency>
62
63     <!-- Scala -->
64     <dependency>
65       <groupId>org.scala-lang</groupId>
66       <artifactId>scala-library</artifactId>
67     </dependency>
68
69     <!-- OpenDaylight -->
70     <dependency>
71       <groupId>net.java.dev.stax-utils</groupId>
72       <artifactId>stax-utils</artifactId>
73       <exclusions>
74         <exclusion>
75           <!-- JSR173 ships with JRE by default -->
76           <groupId>com.bea.xml</groupId>
77           <artifactId>jsr173-ri</artifactId>
78         </exclusion>
79       </exclusions>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal-akka-raft</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.controller</groupId>
87       <artifactId>cds-access-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.controller</groupId>
91       <artifactId>cds-access-client</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>cds-access-client</artifactId>
96       <type>test-jar</type>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>cds-dom-api</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.controller</groupId>
105       <artifactId>sal-akka-raft-example</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller</groupId>
110       <artifactId>sal-akka-raft</artifactId>
111       <type>test-jar</type>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.controller</groupId>
116       <artifactId>sal-clustering-commons</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.controller</groupId>
120       <artifactId>sal-common-util</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.controller</groupId>
124       <artifactId>sal-akka-segmented-journal</artifactId>
125       <scope>test</scope>
126     </dependency>
127
128     <dependency>
129       <groupId>org.opendaylight.mdsal</groupId>
130       <artifactId>mdsal-binding-dom-codec</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>org.opendaylight.mdsal</groupId>
134       <artifactId>mdsal-dom-broker</artifactId>
135     </dependency>
136
137     <dependency>
138       <groupId>org.opendaylight.yangtools</groupId>
139       <artifactId>concepts</artifactId>
140     </dependency>
141     <dependency>
142       <groupId>org.opendaylight.mdsal</groupId>
143       <artifactId>yang-binding</artifactId>
144     </dependency>
145     <dependency>
146       <groupId>org.opendaylight.yangtools</groupId>
147       <artifactId>yang-common</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>org.opendaylight.yangtools</groupId>
151       <artifactId>yang-data-api</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>org.opendaylight.yangtools</groupId>
155       <artifactId>yang-data-impl</artifactId>
156     </dependency>
157     <dependency>
158       <groupId>org.opendaylight.yangtools</groupId>
159       <artifactId>yang-data-codec-xml</artifactId>
160     </dependency>
161     <dependency>
162       <groupId>tech.pantheon.triemap</groupId>
163       <artifactId>triemap</artifactId>
164     </dependency>
165     <dependency>
166       <groupId>org.apache.commons</groupId>
167       <artifactId>commons-lang3</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>org.apache.commons</groupId>
171       <artifactId>commons-text</artifactId>
172     </dependency>
173     <dependency>
174       <groupId>org.opendaylight.mdsal</groupId>
175       <artifactId>mdsal-dom-inmemory-datastore</artifactId>
176     </dependency>
177
178     <dependency>
179       <groupId>io.atomix</groupId>
180       <artifactId>atomix-storage</artifactId>
181       <version>3.1.5</version>
182       <scope>test</scope>
183     </dependency>
184     <dependency>
185       <groupId>io.atomix</groupId>
186       <artifactId>atomix-utils</artifactId>
187       <version>3.1.5</version>
188       <scope>test</scope>
189     </dependency>
190     <dependency>
191       <groupId>org.awaitility</groupId>
192       <artifactId>awaitility</artifactId>
193       <scope>test</scope>
194     </dependency>
195     <dependency>
196       <groupId>commons-io</groupId>
197       <artifactId>commons-io</artifactId>
198       <scope>test</scope>
199     </dependency>
200     <dependency>
201       <groupId>commons-lang</groupId>
202       <artifactId>commons-lang</artifactId>
203       <scope>test</scope>
204     </dependency>
205     <dependency>
206       <groupId>org.opendaylight.yangtools</groupId>
207       <artifactId>yang-test-util</artifactId>
208     </dependency>
209     <dependency>
210       <groupId>org.opendaylight.mdsal</groupId>
211       <artifactId>mdsal-binding-generator-impl</artifactId>
212       <scope>test</scope>
213     </dependency>
214     <dependency>
215       <groupId>org.opendaylight.mdsal</groupId>
216       <artifactId>mdsal-binding-runtime-spi</artifactId>
217       <scope>test</scope>
218     </dependency>
219   </dependencies>
220
221   <build>
222     <plugins>
223       <plugin>
224         <groupId>org.apache.felix</groupId>
225         <artifactId>maven-bundle-plugin</artifactId>
226         <extensions>true</extensions>
227         <configuration>
228           <instructions>
229             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
230             <Export-Package>
231                 org.opendaylight.controller.cluster.datastore;
232                 org.opendaylight.controller.cluster.datastore.config;
233                 org.opendaylight.controller.cluster.datastore.exceptions;
234                 org.opendaylight.controller.cluster.datastore.identifiers;
235                 org.opendaylight.controller.cluster.datastore.messages;
236                 org.opendaylight.controller.cluster.datastore.modification;
237                 org.opendaylight.controller.cluster.datastore.persisted;
238                 org.opendaylight.controller.cluster.datastore.utils;
239                 org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard;
240                 org.opendaylight.controller.cluster.datastore.shardmanager;
241                 org.opendaylight.controller.cluster.sharding;
242                 org.opendaylight.controller.cluster.databroker.actors.dds;
243             </Export-Package>
244           </instructions>
245         </configuration>
246       </plugin>
247
248       <plugin>
249         <groupId>org.apache.maven.plugins</groupId>
250         <artifactId>maven-jar-plugin</artifactId>
251         <executions>
252           <execution>
253             <goals>
254               <goal>test-jar</goal>
255             </goals>
256           </execution>
257         </executions>
258       </plugin>
259     </plugins>
260   </build>
261
262   <scm>
263     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
264     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
265     <tag>HEAD</tag>
266     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
267   </scm>
268
269 </project>