Bump versions by x.y.(z+1)
[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
5     <parent>
6         <groupId>org.opendaylight.controller</groupId>
7         <artifactId>mdsal-parent</artifactId>
8         <version>1.11.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>cds-access-client</artifactId>
14     <version>1.7.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.controller</groupId>
20             <artifactId>cds-access-api</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>com.typesafe.akka</groupId>
24             <artifactId>akka-actor_2.12</artifactId>
25         </dependency>
26
27         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>concepts</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-data-api</artifactId>
34         </dependency>
35
36         <dependency>
37             <groupId>org.mockito</groupId>
38             <artifactId>mockito-core</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.typesafe.akka</groupId>
42             <artifactId>akka-testkit_2.12</artifactId>
43             <scope>test</scope>
44         </dependency>
45         <dependency>
46            <groupId>com.google.guava</groupId>
47            <artifactId>guava-testlib</artifactId>
48         </dependency>
49         <dependency>
50           <groupId>org.opendaylight.controller</groupId>
51           <artifactId>sal-clustering-commons</artifactId>
52           <type>test-jar</type>
53         </dependency>
54     </dependencies>
55
56     <build>
57       <plugins>
58         <plugin>
59           <groupId>org.apache.maven.plugins</groupId>
60           <artifactId>maven-jar-plugin</artifactId>
61           <executions>
62             <execution>
63               <goals>
64                 <goal>test-jar</goal>
65               </goals>
66             </execution>
67           </executions>
68         </plugin>
69       </plugins>
70     </build>
71
72     <scm>
73         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
74         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
75         <tag>HEAD</tag>
76         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
77     </scm>
78 </project>