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