Unit tests for ClientBackedTransactionChain class
[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>config-parent</artifactId>
7     <version>0.6.0-SNAPSHOT</version>
8     <relativePath>../../config/config-parent</relativePath>
9   </parent>
10
11   <artifactId>sal-distributed-datastore</artifactId>
12   <version>1.5.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <!-- Java -->
17     <dependency>
18       <groupId>junit</groupId>
19       <artifactId>junit</artifactId>
20       <scope>test</scope>
21     </dependency>
22     <dependency>
23       <groupId>org.mockito</groupId>
24       <artifactId>mockito-core</artifactId>
25       <scope>test</scope>
26     </dependency>
27     <dependency>
28       <groupId>org.slf4j</groupId>
29       <artifactId>slf4j-simple</artifactId>
30       <scope>test</scope>
31     </dependency>
32
33     <dependency>
34       <groupId>org.osgi</groupId>
35       <artifactId>org.osgi.core</artifactId>
36     </dependency>
37
38     <!-- Akka -->
39     <dependency>
40       <groupId>com.typesafe.akka</groupId>
41       <artifactId>akka-actor_${scala.version}</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>com.typesafe.akka</groupId>
45       <artifactId>akka-cluster_${scala.version}</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>com.typesafe.akka</groupId>
49       <artifactId>akka-osgi_${scala.version}</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>com.typesafe.akka</groupId>
53       <artifactId>akka-persistence_${scala.version}</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>com.typesafe.akka</groupId>
57       <artifactId>akka-remote_${scala.version}</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>com.typesafe.akka</groupId>
61       <artifactId>akka-distributed-data-experimental_${scala.version}</artifactId>
62       <version>2.4.7</version>
63     </dependency>
64     <dependency>
65       <groupId>com.typesafe.akka</groupId>
66       <artifactId>akka-slf4j_${scala.version}</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.scala-lang.modules</groupId>
70       <artifactId>scala-java8-compat_${scala.version}</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>com.typesafe.akka</groupId>
74       <artifactId>akka-testkit_${scala.version}</artifactId>
75       <scope>test</scope>
76     </dependency>
77
78     <!-- Codahale -->
79     <dependency>
80       <groupId>io.dropwizard.metrics</groupId>
81       <artifactId>metrics-core</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>io.dropwizard.metrics</groupId>
85       <artifactId>metrics-graphite</artifactId>
86     </dependency>
87
88     <!-- Google -->
89     <dependency>
90       <groupId>com.google.guava</groupId>
91       <artifactId>guava</artifactId>
92     </dependency>
93
94     <!-- Scala -->
95     <dependency>
96       <groupId>org.scala-lang</groupId>
97       <artifactId>scala-library</artifactId>
98     </dependency>
99
100     <!-- OpenDaylight -->
101     <dependency>
102       <groupId>net.java.dev.stax-utils</groupId>
103       <artifactId>stax-utils</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>config-api</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.controller</groupId>
111       <artifactId>sal-akka-raft</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.controller</groupId>
115       <artifactId>cds-access-api</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.opendaylight.controller</groupId>
119       <artifactId>cds-access-client</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.controller</groupId>
123       <artifactId>cds-dom-api</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.controller</groupId>
127       <artifactId>sal-akka-raft-example</artifactId>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.controller</groupId>
132       <artifactId>sal-akka-raft</artifactId>
133       <type>test-jar</type>
134       <scope>test</scope>
135     </dependency>
136     <dependency>
137       <groupId>org.opendaylight.controller</groupId>
138       <artifactId>sal-binding-api</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>org.opendaylight.controller</groupId>
142       <artifactId>sal-binding-config</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>org.opendaylight.controller</groupId>
146       <artifactId>sal-clustering-commons</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>org.opendaylight.controller</groupId>
150       <artifactId>sal-common-api</artifactId>
151     </dependency>
152     <dependency>
153       <groupId>org.opendaylight.controller</groupId>
154       <artifactId>sal-common-util</artifactId>
155     </dependency>
156     <dependency>
157       <groupId>org.opendaylight.controller</groupId>
158       <artifactId>sal-dom-broker-config</artifactId>
159     </dependency>
160
161     <dependency>
162       <groupId>org.opendaylight.mdsal</groupId>
163       <artifactId>mdsal-dom-api</artifactId>
164     </dependency>
165     <dependency>
166       <groupId>org.opendaylight.mdsal</groupId>
167       <artifactId>mdsal-eos-dom-api</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>org.opendaylight.mdsal</groupId>
171       <artifactId>mdsal-dom-spi</artifactId>
172     </dependency>
173     <dependency>
174       <groupId>org.opendaylight.mdsal</groupId>
175       <artifactId>mdsal-dom-inmemory-datastore</artifactId>
176     </dependency>
177     <dependency>
178       <groupId>org.opendaylight.mdsal</groupId>
179       <artifactId>mdsal-dom-broker</artifactId>
180     </dependency>
181     <dependency>
182       <groupId>org.opendaylight.controller</groupId>
183       <artifactId>sal-core-spi</artifactId>
184     </dependency>
185     <dependency>
186       <groupId>org.opendaylight.controller</groupId>
187       <artifactId>sal-inmemory-datastore</artifactId>
188     </dependency>
189
190     <dependency>
191       <groupId>org.opendaylight.yangtools</groupId>
192       <artifactId>concepts</artifactId>
193     </dependency>
194     <dependency>
195       <groupId>org.opendaylight.mdsal</groupId>
196       <artifactId>yang-binding</artifactId>
197     </dependency>
198     <dependency>
199       <groupId>org.opendaylight.yangtools</groupId>
200       <artifactId>yang-common</artifactId>
201     </dependency>
202     <dependency>
203       <groupId>org.opendaylight.yangtools</groupId>
204       <artifactId>yang-data-api</artifactId>
205     </dependency>
206     <dependency>
207       <groupId>org.opendaylight.yangtools</groupId>
208       <artifactId>yang-data-impl</artifactId>
209     </dependency>
210     <dependency>
211       <groupId>org.apache.commons</groupId>
212       <artifactId>commons-lang3</artifactId>
213     </dependency>
214
215     <dependency>
216       <groupId>org.opendaylight.yangtools</groupId>
217       <artifactId>yang-test-util</artifactId>
218     </dependency>
219   </dependencies>
220
221   <build>
222     <plugins>
223       <plugin>
224         <groupId>org.apache.felix</groupId>
225         <artifactId>maven-bundle-plugin</artifactId>
226         <extensions>true</extensions>
227         <configuration>
228           <instructions>
229             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
230             <Export-Package>
231                 org.opendaylight.controller.cluster.datastore;
232                 org.opendaylight.controller.cluster.datastore.config;
233                 org.opendaylight.controller.cluster.datastore.messages;
234                 org.opendaylight.controller.cluster.datastore.persisted;
235                 org.opendaylight.controller.cluster.datastore.utils;
236                 org.opendaylight.controller.cluster.sharding;
237             </Export-Package>
238             <Import-Package>
239                 !*snappy;
240                 !org.jboss.*;
241                 !com.jcraft.*;
242                 !*jetty*;
243                 !sun.security.*;
244                 *;
245                 org.opendaylight.controller.md.sal.dom.broker.impl.jmx
246             </Import-Package>
247           </instructions>
248         </configuration>
249       </plugin>
250
251       <plugin>
252         <groupId>org.apache.maven.plugins</groupId>
253         <artifactId>maven-jar-plugin</artifactId>
254         <executions>
255           <execution>
256             <goals>
257               <goal>test-jar</goal>
258             </goals>
259           </execution>
260         </executions>
261       </plugin>
262       <plugin>
263         <groupId>org.apache.maven.plugins</groupId>
264         <artifactId>maven-checkstyle-plugin</artifactId>
265         <configuration>
266           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
267         </configuration>
268       </plugin>
269       <plugin>
270         <groupId>org.codehaus.mojo</groupId>
271         <artifactId>findbugs-maven-plugin</artifactId>
272         <configuration>
273           <failOnError>true</failOnError>
274         </configuration>
275       </plugin>
276     </plugins>
277   </build>
278
279   <scm>
280     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
281     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
282     <tag>HEAD</tag>
283     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
284   </scm>
285
286   <!--
287       Maven Site Configuration
288
289       The following configuration is necessary for maven-site-plugin to
290       correctly identify the correct deployment path for OpenDaylight Maven
291       sites.
292   -->
293   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
294
295   <distributionManagement>
296     <site>
297       <id>opendaylight-site</id>
298       <url>${nexus.site.url}/${project.artifactId}/</url>
299     </site>
300   </distributionManagement>
301 </project>