Bump versions by x.y.(z+1)
[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.9.4-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-distributed-datastore</artifactId>
12   <version>1.9.4-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <!-- Java -->
17     <dependency>
18       <groupId>org.mockito</groupId>
19       <artifactId>mockito-core</artifactId>
20       <scope>test</scope>
21     </dependency>
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       <exclusions>
79         <exclusion>
80           <!-- JSR173 ships with JRE by default -->
81           <groupId>com.bea.xml</groupId>
82           <artifactId>jsr173-ri</artifactId>
83         </exclusion>
84       </exclusions>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>sal-akka-raft</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>cds-access-api</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller</groupId>
96       <artifactId>cds-access-client</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>cds-access-client</artifactId>
101       <type>test-jar</type>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.controller</groupId>
106       <artifactId>cds-dom-api</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller</groupId>
110       <artifactId>sal-akka-raft-example</artifactId>
111       <scope>test</scope>
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>org.opendaylight.controller</groupId>
121       <artifactId>sal-binding-api</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.controller</groupId>
125       <artifactId>sal-clustering-commons</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>org.opendaylight.controller</groupId>
129       <artifactId>sal-common-api</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.controller</groupId>
133       <artifactId>sal-common-util</artifactId>
134     </dependency>
135     <dependency>
136       <groupId>org.opendaylight.controller</groupId>
137       <artifactId>sal-core-compat</artifactId>
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-eos-dom-api</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>org.opendaylight.mdsal</groupId>
150       <artifactId>mdsal-dom-spi</artifactId>
151     </dependency>
152     <dependency>
153       <groupId>org.opendaylight.mdsal</groupId>
154       <artifactId>mdsal-dom-broker</artifactId>
155     </dependency>
156     <dependency>
157       <groupId>org.opendaylight.mdsal</groupId>
158       <artifactId>mdsal-binding-dom-codec</artifactId>
159     </dependency>
160     <dependency>
161       <groupId>org.opendaylight.controller</groupId>
162       <artifactId>sal-core-spi</artifactId>
163     </dependency>
164
165     <dependency>
166       <groupId>org.opendaylight.yangtools</groupId>
167       <artifactId>concepts</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>org.opendaylight.mdsal</groupId>
171       <artifactId>yang-binding</artifactId>
172     </dependency>
173     <dependency>
174       <groupId>org.opendaylight.yangtools</groupId>
175       <artifactId>yang-common</artifactId>
176     </dependency>
177     <dependency>
178       <groupId>org.opendaylight.yangtools</groupId>
179       <artifactId>yang-data-api</artifactId>
180     </dependency>
181     <dependency>
182       <groupId>org.opendaylight.yangtools</groupId>
183       <artifactId>yang-data-impl</artifactId>
184     </dependency>
185     <dependency>
186       <groupId>org.opendaylight.yangtools</groupId>
187       <artifactId>yang-data-codec-xml</artifactId>
188     </dependency>
189     <dependency>
190       <groupId>tech.pantheon.triemap</groupId>
191       <artifactId>triemap</artifactId>
192     </dependency>
193     <dependency>
194       <groupId>org.apache.commons</groupId>
195       <artifactId>commons-lang3</artifactId>
196     </dependency>
197     <dependency>
198       <groupId>org.apache.commons</groupId>
199       <artifactId>commons-text</artifactId>
200     </dependency>
201     <dependency>
202       <groupId>org.opendaylight.mdsal</groupId>
203       <artifactId>mdsal-dom-inmemory-datastore</artifactId>
204     </dependency>
205
206     <dependency>
207       <groupId>commons-lang</groupId>
208       <artifactId>commons-lang</artifactId>
209       <scope>test</scope>
210     </dependency>
211     <dependency>
212       <groupId>org.opendaylight.yangtools</groupId>
213       <artifactId>yang-test-util</artifactId>
214     </dependency>
215   </dependencies>
216
217   <build>
218     <plugins>
219       <plugin>
220         <groupId>org.apache.felix</groupId>
221         <artifactId>maven-bundle-plugin</artifactId>
222         <extensions>true</extensions>
223         <configuration>
224           <instructions>
225             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
226             <Export-Package>
227                 org.opendaylight.controller.cluster.datastore;
228                 org.opendaylight.controller.cluster.datastore.config;
229                 org.opendaylight.controller.cluster.datastore.exceptions;
230                 org.opendaylight.controller.cluster.datastore.messages;
231                 org.opendaylight.controller.cluster.datastore.persisted;
232                 org.opendaylight.controller.cluster.datastore.utils;
233                 org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard;
234                 org.opendaylight.controller.cluster.datastore.shardmanager;
235                 org.opendaylight.controller.cluster.sharding;
236                 org.opendaylight.controller.cluster.databroker.actors.dds;
237             </Export-Package>
238           </instructions>
239         </configuration>
240       </plugin>
241
242       <plugin>
243         <groupId>org.apache.maven.plugins</groupId>
244         <artifactId>maven-jar-plugin</artifactId>
245         <executions>
246           <execution>
247             <goals>
248               <goal>test-jar</goal>
249             </goals>
250           </execution>
251         </executions>
252       </plugin>
253     </plugins>
254   </build>
255
256   <scm>
257     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
258     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
259     <tag>HEAD</tag>
260     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
261   </scm>
262
263 </project>