Bump versions to 7.0.7-SNAPSHOT
[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>7.0.7-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>cds-access-client</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16            <groupId>com.google.guava</groupId>
17            <artifactId>guava</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>org.opendaylight.controller</groupId>
21             <artifactId>cds-access-api</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>repackaged-akka</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>sal-clustering-commons</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>concepts</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.scala-lang</groupId>
37             <artifactId>scala-library</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.checkerframework</groupId>
41             <artifactId>checker-qual</artifactId>
42             <optional>true</optional>
43         </dependency>
44
45         <!-- FIXME: default mockito-inline does not work with ActorBehaviorTest -->
46         <dependency>
47             <groupId>org.mockito</groupId>
48             <artifactId>mockito-subclass</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>com.typesafe</groupId>
53             <artifactId>config</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>com.typesafe.akka</groupId>
58             <artifactId>akka-testkit_2.13</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>com.google.guava</groupId>
62             <artifactId>guava-testlib</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>yang-common</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>yang-data-api</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools</groupId>
76             <artifactId>yang-data-impl</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>sal-clustering-commons</artifactId>
82             <type>test-jar</type>
83         </dependency>
84     </dependencies>
85
86     <build>
87         <pluginManagement>
88             <plugins>
89                 <plugin>
90                     <artifactId>maven-javadoc-plugin</artifactId>
91                     <version>3.1.1</version>
92                 </plugin>
93             </plugins>
94         </pluginManagement>
95
96         <plugins>
97             <plugin>
98                 <groupId>org.apache.felix</groupId>
99                 <artifactId>maven-bundle-plugin</artifactId>
100                 <configuration>
101                     <instructions>
102                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.client</Automatic-Module-Name>
103                     </instructions>
104                 </configuration>
105             </plugin>
106             <plugin>
107                 <artifactId>maven-jar-plugin</artifactId>
108                 <executions>
109                     <execution>
110                         <goals>
111                             <goal>test-jar</goal>
112                         </goals>
113                     </execution>
114                 </executions>
115             </plugin>
116             <plugin>
117                 <artifactId>maven-source-plugin</artifactId>
118                 <executions>
119                     <execution>
120                         <goals>
121                             <goal>test-jar-no-fork</goal>
122                         </goals>
123                     </execution>
124                 </executions>
125             </plugin>
126         </plugins>
127     </build>
128
129     <scm>
130         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
131         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
132         <tag>HEAD</tag>
133         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
134     </scm>
135 </project>