Fix followerDistributedDataStore tear down
[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.11.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-distributed-datastore</artifactId>
12   <version>1.11.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.12</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.typesafe.akka</groupId>
35       <artifactId>akka-cluster_2.12</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>com.typesafe.akka</groupId>
39       <artifactId>akka-osgi_2.12</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>com.typesafe.akka</groupId>
43       <artifactId>akka-persistence_2.12</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>com.typesafe.akka</groupId>
47       <artifactId>akka-remote_2.12</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>com.typesafe.akka</groupId>
51       <artifactId>akka-slf4j_2.12</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.scala-lang.modules</groupId>
55       <artifactId>scala-java8-compat_2.12</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>com.typesafe.akka</groupId>
59       <artifactId>akka-testkit_2.12</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-binding-api</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.controller</groupId>
120       <artifactId>sal-clustering-commons</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.controller</groupId>
124       <artifactId>sal-common-api</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>org.opendaylight.controller</groupId>
128       <artifactId>sal-common-util</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.controller</groupId>
132       <artifactId>sal-core-compat</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.controller</groupId>
136       <artifactId>sal-akka-segmented-journal</artifactId>
137       <scope>test</scope>
138     </dependency>
139
140     <dependency>
141       <groupId>org.opendaylight.mdsal</groupId>
142       <artifactId>mdsal-dom-api</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>org.opendaylight.mdsal</groupId>
146       <artifactId>mdsal-dom-spi</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>org.opendaylight.mdsal</groupId>
150       <artifactId>mdsal-dom-broker</artifactId>
151     </dependency>
152     <dependency>
153       <groupId>org.opendaylight.mdsal</groupId>
154       <artifactId>mdsal-binding-dom-codec</artifactId>
155     </dependency>
156     <dependency>
157       <groupId>org.opendaylight.controller</groupId>
158       <artifactId>sal-core-spi</artifactId>
159     </dependency>
160
161     <dependency>
162       <groupId>org.opendaylight.yangtools</groupId>
163       <artifactId>concepts</artifactId>
164     </dependency>
165     <dependency>
166       <groupId>org.opendaylight.mdsal</groupId>
167       <artifactId>yang-binding</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>org.opendaylight.yangtools</groupId>
171       <artifactId>yang-common</artifactId>
172     </dependency>
173     <dependency>
174       <groupId>org.opendaylight.yangtools</groupId>
175       <artifactId>yang-data-api</artifactId>
176     </dependency>
177     <dependency>
178       <groupId>org.opendaylight.yangtools</groupId>
179       <artifactId>yang-data-impl</artifactId>
180     </dependency>
181     <dependency>
182       <groupId>org.opendaylight.yangtools</groupId>
183       <artifactId>yang-data-codec-xml</artifactId>
184     </dependency>
185     <dependency>
186       <groupId>tech.pantheon.triemap</groupId>
187       <artifactId>triemap</artifactId>
188     </dependency>
189     <dependency>
190       <groupId>org.apache.commons</groupId>
191       <artifactId>commons-lang3</artifactId>
192     </dependency>
193     <dependency>
194       <groupId>org.apache.commons</groupId>
195       <artifactId>commons-text</artifactId>
196     </dependency>
197     <dependency>
198       <groupId>org.opendaylight.mdsal</groupId>
199       <artifactId>mdsal-dom-inmemory-datastore</artifactId>
200     </dependency>
201
202     <dependency>
203       <groupId>io.atomix</groupId>
204       <artifactId>atomix-storage</artifactId>
205       <version>3.1.5</version>
206       <scope>test</scope>
207     </dependency>
208     <dependency>
209       <groupId>io.atomix</groupId>
210       <artifactId>atomix-utils</artifactId>
211       <version>3.1.5</version>
212       <scope>test</scope>
213     </dependency>
214     <dependency>
215       <groupId>org.awaitility</groupId>
216       <artifactId>awaitility</artifactId>
217       <scope>test</scope>
218     </dependency>
219     <dependency>
220       <groupId>commons-io</groupId>
221       <artifactId>commons-io</artifactId>
222       <scope>test</scope>
223     </dependency>
224     <dependency>
225       <groupId>commons-lang</groupId>
226       <artifactId>commons-lang</artifactId>
227       <scope>test</scope>
228     </dependency>
229     <dependency>
230       <groupId>org.opendaylight.yangtools</groupId>
231       <artifactId>yang-test-util</artifactId>
232     </dependency>
233   </dependencies>
234
235   <build>
236     <plugins>
237       <plugin>
238         <groupId>org.apache.felix</groupId>
239         <artifactId>maven-bundle-plugin</artifactId>
240         <extensions>true</extensions>
241         <configuration>
242           <instructions>
243             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
244             <Export-Package>
245                 org.opendaylight.controller.cluster.datastore;
246                 org.opendaylight.controller.cluster.datastore.config;
247                 org.opendaylight.controller.cluster.datastore.exceptions;
248                 org.opendaylight.controller.cluster.datastore.identifiers;
249                 org.opendaylight.controller.cluster.datastore.messages;
250                 org.opendaylight.controller.cluster.datastore.modification;
251                 org.opendaylight.controller.cluster.datastore.persisted;
252                 org.opendaylight.controller.cluster.datastore.utils;
253                 org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard;
254                 org.opendaylight.controller.cluster.datastore.shardmanager;
255                 org.opendaylight.controller.cluster.sharding;
256                 org.opendaylight.controller.cluster.databroker.actors.dds;
257             </Export-Package>
258           </instructions>
259         </configuration>
260       </plugin>
261
262       <plugin>
263         <groupId>org.apache.maven.plugins</groupId>
264         <artifactId>maven-jar-plugin</artifactId>
265         <executions>
266           <execution>
267             <goals>
268               <goal>test-jar</goal>
269             </goals>
270           </execution>
271         </executions>
272       </plugin>
273     </plugins>
274   </build>
275
276   <scm>
277     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
278     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
279     <tag>HEAD</tag>
280     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
281   </scm>
282
283 </project>