Bump versions to 4.0.2-SNAPSHOT
[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>4.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>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-common</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.yangtools</groupId>
30             <artifactId>yang-data-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.yangtools</groupId>
34             <artifactId>yang-data-impl</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.yangtools</groupId>
38             <artifactId>yang-data-codec-binfmt</artifactId>
39         </dependency>
40
41         <!-- Testing dependencies -->
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>mockito-configuration</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.typesafe.akka</groupId>
48             <artifactId>akka-testkit_2.13</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>commons-lang</groupId>
52             <artifactId>commons-lang</artifactId>
53             <scope>test</scope>
54         </dependency>
55     </dependencies>
56
57     <build>
58         <plugins>
59             <plugin>
60                 <groupId>org.apache.felix</groupId>
61                 <artifactId>maven-bundle-plugin</artifactId>
62                 <configuration>
63                     <instructions>
64                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.api</Automatic-Module-Name>
65                     </instructions>
66                 </configuration>
67             </plugin>
68         </plugins>
69     </build>
70
71     <scm>
72         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
73         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
74         <tag>HEAD</tag>
75         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
76     </scm>
77 </project>