Snapshot and journal export on recovery
[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.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>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>tech.pantheon.triemap</groupId>
142       <artifactId>triemap</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>org.apache.commons</groupId>
146       <artifactId>commons-lang3</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>org.apache.commons</groupId>
150       <artifactId>commons-text</artifactId>
151     </dependency>
152
153     <dependency>
154       <groupId>io.atomix</groupId>
155       <artifactId>atomix-storage</artifactId>
156       <version>3.1.5</version>
157       <scope>test</scope>
158     </dependency>
159     <dependency>
160       <groupId>io.atomix</groupId>
161       <artifactId>atomix-utils</artifactId>
162       <version>3.1.5</version>
163       <scope>test</scope>
164     </dependency>
165     <dependency>
166       <groupId>org.awaitility</groupId>
167       <artifactId>awaitility</artifactId>
168       <scope>test</scope>
169     </dependency>
170     <dependency>
171       <groupId>commons-io</groupId>
172       <artifactId>commons-io</artifactId>
173       <scope>test</scope>
174     </dependency>
175     <dependency>
176       <groupId>commons-lang</groupId>
177       <artifactId>commons-lang</artifactId>
178       <scope>test</scope>
179     </dependency>
180     <dependency>
181       <groupId>org.opendaylight.yangtools</groupId>
182       <artifactId>yang-test-util</artifactId>
183     </dependency>
184     <dependency>
185       <groupId>org.opendaylight.mdsal</groupId>
186       <artifactId>mdsal-binding-test-utils</artifactId>
187     </dependency>
188   </dependencies>
189
190   <build>
191     <plugins>
192       <plugin>
193         <groupId>org.apache.felix</groupId>
194         <artifactId>maven-bundle-plugin</artifactId>
195         <extensions>true</extensions>
196         <configuration>
197           <instructions>
198             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
199
200             <!-- Karaf cannot handle Factory Component requirements, see https://issues.apache.org/jira/browse/KARAF-6625 -->
201             <_dsannotations-options>norequirements</_dsannotations-options>
202
203             <Export-Package>
204                 org.opendaylight.controller.cluster.datastore;
205                 org.opendaylight.controller.cluster.datastore.config;
206                 org.opendaylight.controller.cluster.datastore.exceptions;
207                 org.opendaylight.controller.cluster.datastore.identifiers;
208                 org.opendaylight.controller.cluster.datastore.messages;
209                 org.opendaylight.controller.cluster.datastore.modification;
210                 org.opendaylight.controller.cluster.datastore.persisted;
211                 org.opendaylight.controller.cluster.datastore.utils;
212                 org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard;
213                 org.opendaylight.controller.cluster.datastore.shardmanager;
214                 org.opendaylight.controller.cluster.sharding;
215                 org.opendaylight.controller.cluster.databroker.actors.dds;
216             </Export-Package>
217           </instructions>
218         </configuration>
219       </plugin>
220
221       <plugin>
222         <artifactId>maven-jar-plugin</artifactId>
223         <executions>
224           <execution>
225             <goals>
226               <goal>test-jar</goal>
227             </goals>
228           </execution>
229         </executions>
230       </plugin>
231       <plugin>
232         <artifactId>maven-source-plugin</artifactId>
233         <executions>
234           <execution>
235             <goals>
236               <goal>test-jar-no-fork</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>