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