535b23662e790d846fc02a8506eff018ee589ec1
[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>2.0.2-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>com.typesafe.akka</groupId>
17             <artifactId>akka-actor_2.13</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             <scope>test</scope>
44         </dependency>
45         <dependency>
46             <groupId>commons-lang</groupId>
47             <artifactId>commons-lang</artifactId>
48             <scope>test</scope>
49         </dependency>
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.apache.felix</groupId>
56                 <artifactId>maven-bundle-plugin</artifactId>
57                 <configuration>
58                     <instructions>
59                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.api</Automatic-Module-Name>
60                     </instructions>
61                 </configuration>
62             </plugin>
63         </plugins>
64     </build>
65
66     <scm>
67         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
68         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
69         <tag>HEAD</tag>
70         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
71     </scm>
72 </project>