Fix followerDistributedDataStore tear down
[controller.git] / opendaylight / md-sal / cds-access-api / 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>3.0.6-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>cds-access-api</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>org.opendaylight.controller</groupId>
17             <artifactId>repackaged-akka</artifactId>
18         </dependency>
19
20         <dependency>
21             <groupId>org.opendaylight.yangtools</groupId>
22             <artifactId>concepts</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.yangtools</groupId>
26             <artifactId>yang-data-api</artifactId>
27         </dependency>
28
29         <!-- Needed for serialization of yang-data-api objects -->
30         <dependency>
31             <groupId>org.opendaylight.controller</groupId>
32             <artifactId>sal-clustering-commons</artifactId>
33         </dependency>
34
35         <!-- Testing dependencies -->
36         <dependency>
37             <groupId>org.opendaylight.yangtools</groupId>
38             <artifactId>mockito-configuration</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.typesafe.akka</groupId>
42             <artifactId>akka-testkit_2.13</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>commons-lang</groupId>
46             <artifactId>commons-lang</artifactId>
47             <scope>test</scope>
48         </dependency>
49     </dependencies>
50
51     <build>
52         <plugins>
53             <plugin>
54                 <groupId>org.apache.felix</groupId>
55                 <artifactId>maven-bundle-plugin</artifactId>
56                 <configuration>
57                     <instructions>
58                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.api</Automatic-Module-Name>
59                     </instructions>
60                 </configuration>
61             </plugin>
62         </plugins>
63     </build>
64
65     <scm>
66         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
67         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
68         <tag>HEAD</tag>
69         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
70     </scm>
71 </project>