Bump odlparent to 6.0.0
[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   <properties>
16     <!-- FIXME: Workaround for https://issues.apache.org/jira/browse/ARIES-1923 -->
17     <maven.compiler.release>10</maven.compiler.release>
18   </properties>
19
20   <dependencies>
21     <!-- Java -->
22     <dependency>
23       <groupId>org.slf4j</groupId>
24       <artifactId>slf4j-simple</artifactId>
25       <scope>test</scope>
26     </dependency>
27
28     <dependency>
29       <groupId>org.osgi</groupId>
30       <artifactId>org.osgi.core</artifactId>
31     </dependency>
32
33     <!-- Akka -->
34     <dependency>
35       <groupId>com.typesafe.akka</groupId>
36       <artifactId>akka-actor_2.12</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>com.typesafe.akka</groupId>
40       <artifactId>akka-cluster_2.12</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>com.typesafe.akka</groupId>
44       <artifactId>akka-osgi_2.12</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>com.typesafe.akka</groupId>
48       <artifactId>akka-persistence_2.12</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>com.typesafe.akka</groupId>
52       <artifactId>akka-remote_2.12</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>com.typesafe.akka</groupId>
56       <artifactId>akka-slf4j_2.12</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.scala-lang.modules</groupId>
60       <artifactId>scala-java8-compat_2.12</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>com.typesafe.akka</groupId>
64       <artifactId>akka-testkit_2.12</artifactId>
65       <scope>test</scope>
66     </dependency>
67
68     <!-- Scala -->
69     <dependency>
70       <groupId>org.scala-lang</groupId>
71       <artifactId>scala-library</artifactId>
72     </dependency>
73
74     <!-- OpenDaylight -->
75     <dependency>
76       <groupId>net.java.dev.stax-utils</groupId>
77       <artifactId>stax-utils</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>sal-akka-raft</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>cds-access-api</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>cds-access-client</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>cds-access-client</artifactId>
94       <type>test-jar</type>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>cds-dom-api</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller</groupId>
103       <artifactId>sal-akka-raft-example</artifactId>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.controller</groupId>
108       <artifactId>sal-akka-raft</artifactId>
109       <type>test-jar</type>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.controller</groupId>
114       <artifactId>sal-binding-api</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.controller</groupId>
118       <artifactId>sal-clustering-commons</artifactId>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.controller</groupId>
122       <artifactId>sal-common-api</artifactId>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.controller</groupId>
126       <artifactId>sal-common-util</artifactId>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.controller</groupId>
130       <artifactId>sal-core-compat</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>org.opendaylight.controller</groupId>
134       <artifactId>sal-akka-segmented-journal</artifactId>
135       <scope>test</scope>
136     </dependency>
137
138     <dependency>
139       <groupId>org.opendaylight.mdsal</groupId>
140       <artifactId>mdsal-dom-api</artifactId>
141     </dependency>
142     <dependency>
143       <groupId>org.opendaylight.mdsal</groupId>
144       <artifactId>mdsal-eos-dom-api</artifactId>
145     </dependency>
146     <dependency>
147       <groupId>org.opendaylight.mdsal</groupId>
148       <artifactId>mdsal-dom-spi</artifactId>
149     </dependency>
150     <dependency>
151       <groupId>org.opendaylight.mdsal</groupId>
152       <artifactId>mdsal-dom-broker</artifactId>
153     </dependency>
154     <dependency>
155       <groupId>org.opendaylight.mdsal</groupId>
156       <artifactId>mdsal-binding-dom-codec</artifactId>
157     </dependency>
158     <dependency>
159       <groupId>org.opendaylight.controller</groupId>
160       <artifactId>sal-core-spi</artifactId>
161     </dependency>
162
163     <dependency>
164       <groupId>org.opendaylight.yangtools</groupId>
165       <artifactId>concepts</artifactId>
166     </dependency>
167     <dependency>
168       <groupId>org.opendaylight.mdsal</groupId>
169       <artifactId>yang-binding</artifactId>
170     </dependency>
171     <dependency>
172       <groupId>org.opendaylight.yangtools</groupId>
173       <artifactId>yang-common</artifactId>
174     </dependency>
175     <dependency>
176       <groupId>org.opendaylight.yangtools</groupId>
177       <artifactId>yang-data-api</artifactId>
178     </dependency>
179     <dependency>
180       <groupId>org.opendaylight.yangtools</groupId>
181       <artifactId>yang-data-impl</artifactId>
182     </dependency>
183     <dependency>
184       <groupId>org.opendaylight.yangtools</groupId>
185       <artifactId>yang-data-codec-xml</artifactId>
186     </dependency>
187     <dependency>
188       <groupId>tech.pantheon.triemap</groupId>
189       <artifactId>triemap</artifactId>
190     </dependency>
191     <dependency>
192       <groupId>org.apache.commons</groupId>
193       <artifactId>commons-lang3</artifactId>
194     </dependency>
195     <dependency>
196       <groupId>org.apache.commons</groupId>
197       <artifactId>commons-text</artifactId>
198     </dependency>
199     <dependency>
200       <groupId>org.opendaylight.mdsal</groupId>
201       <artifactId>mdsal-dom-inmemory-datastore</artifactId>
202     </dependency>
203
204     <dependency>
205       <groupId>io.atomix</groupId>
206       <artifactId>atomix-storage</artifactId>
207       <version>3.1.5</version>
208       <scope>test</scope>
209     </dependency>
210     <dependency>
211       <groupId>io.atomix</groupId>
212       <artifactId>atomix-utils</artifactId>
213       <version>3.1.5</version>
214       <scope>test</scope>
215     </dependency>
216     <dependency>
217       <groupId>org.awaitility</groupId>
218       <artifactId>awaitility</artifactId>
219       <scope>test</scope>
220     </dependency>
221     <dependency>
222       <groupId>commons-io</groupId>
223       <artifactId>commons-io</artifactId>
224       <scope>test</scope>
225     </dependency>
226     <dependency>
227       <groupId>commons-lang</groupId>
228       <artifactId>commons-lang</artifactId>
229       <scope>test</scope>
230     </dependency>
231     <dependency>
232       <groupId>org.opendaylight.yangtools</groupId>
233       <artifactId>yang-test-util</artifactId>
234     </dependency>
235   </dependencies>
236
237   <build>
238     <plugins>
239       <plugin>
240         <groupId>org.apache.felix</groupId>
241         <artifactId>maven-bundle-plugin</artifactId>
242         <extensions>true</extensions>
243         <configuration>
244           <instructions>
245             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
246             <Export-Package>
247                 org.opendaylight.controller.cluster.datastore;
248                 org.opendaylight.controller.cluster.datastore.config;
249                 org.opendaylight.controller.cluster.datastore.exceptions;
250                 org.opendaylight.controller.cluster.datastore.messages;
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>