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