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