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