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