Cleanup versions across modules
[controller.git] / opendaylight / md-sal / cds-access-client / 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-client</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.controller</groupId>
18             <artifactId>cds-access-api</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>com.typesafe.akka</groupId>
22             <artifactId>akka-actor_2.13</artifactId>
23         </dependency>
24
25         <dependency>
26             <groupId>org.opendaylight.yangtools</groupId>
27             <artifactId>concepts</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>yang-data-api</artifactId>
32         </dependency>
33
34         <dependency>
35             <groupId>org.mockito</groupId>
36             <artifactId>mockito-core</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>com.typesafe.akka</groupId>
40             <artifactId>akka-testkit_2.13</artifactId>
41             <scope>test</scope>
42         </dependency>
43         <dependency>
44            <groupId>com.google.guava</groupId>
45            <artifactId>guava-testlib</artifactId>
46         </dependency>
47         <dependency>
48           <groupId>org.opendaylight.controller</groupId>
49           <artifactId>sal-clustering-commons</artifactId>
50           <type>test-jar</type>
51         </dependency>
52     </dependencies>
53
54     <build>
55         <plugins>
56             <plugin>
57                 <groupId>org.apache.felix</groupId>
58                 <artifactId>maven-bundle-plugin</artifactId>
59                 <configuration>
60                     <instructions>
61                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.client</Automatic-Module-Name>
62                     </instructions>
63                 </configuration>
64             </plugin>
65             <plugin>
66                 <groupId>org.apache.maven.plugins</groupId>
67                 <artifactId>maven-jar-plugin</artifactId>
68                 <executions>
69                     <execution>
70                         <goals>
71                             <goal>test-jar</goal>
72                         </goals>
73                     </execution>
74                 </executions>
75             </plugin>
76         </plugins>
77     </build>
78
79     <scm>
80         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
81         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
82         <tag>HEAD</tag>
83         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
84     </scm>
85 </project>