Adjust to mdsal CursorAware API changes
[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.8.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-distributed-datastore</artifactId>
12   <version>1.8.0-SNAPSHOT</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>org.opendaylight.yangtools</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
195     <dependency>
196       <groupId>org.opendaylight.yangtools</groupId>
197       <artifactId>yang-test-util</artifactId>
198     </dependency>
199   </dependencies>
200
201   <build>
202     <plugins>
203       <plugin>
204         <groupId>org.apache.felix</groupId>
205         <artifactId>maven-bundle-plugin</artifactId>
206         <extensions>true</extensions>
207         <configuration>
208           <instructions>
209             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
210             <Export-Package>
211                 org.opendaylight.controller.cluster.datastore;
212                 org.opendaylight.controller.cluster.datastore.config;
213                 org.opendaylight.controller.cluster.datastore.exceptions;
214                 org.opendaylight.controller.cluster.datastore.messages;
215                 org.opendaylight.controller.cluster.datastore.persisted;
216                 org.opendaylight.controller.cluster.datastore.utils;
217                 org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard;
218                 org.opendaylight.controller.cluster.datastore.shardmanager;
219                 org.opendaylight.controller.cluster.sharding;
220                 org.opendaylight.controller.cluster.databroker.actors.dds;
221             </Export-Package>
222             <Import-Package>
223                 *;
224                 org.opendaylight.controller.md.sal.dom.broker.impl.jmx
225             </Import-Package>
226           </instructions>
227         </configuration>
228       </plugin>
229
230       <plugin>
231         <groupId>org.apache.maven.plugins</groupId>
232         <artifactId>maven-jar-plugin</artifactId>
233         <executions>
234           <execution>
235             <goals>
236               <goal>test-jar</goal>
237             </goals>
238           </execution>
239         </executions>
240       </plugin>
241     </plugins>
242   </build>
243
244   <scm>
245     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
246     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
247     <tag>HEAD</tag>
248     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
249   </scm>
250
251 </project>