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