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