Bump upstreams
[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.4-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.opendaylight.yangtools</groupId>
37             <artifactId>yang-common</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-data-api</artifactId>
42         </dependency>
43
44         <!-- FIXME: 5.1.1 does not work with ActorBehaviorTest -->
45         <dependency>
46             <groupId>org.mockito</groupId>
47             <artifactId>mockito-core</artifactId>
48             <version>4.11.0</version>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>com.typesafe.akka</groupId>
53             <artifactId>akka-testkit_2.13</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>com.google.guava</groupId>
57             <artifactId>guava-testlib</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-clustering-commons</artifactId>
62             <type>test-jar</type>
63         </dependency>
64     </dependencies>
65
66     <build>
67         <pluginManagement>
68             <plugins>
69                 <plugin>
70                     <artifactId>maven-javadoc-plugin</artifactId>
71                     <version>3.1.1</version>
72                 </plugin>
73             </plugins>
74         </pluginManagement>
75
76         <plugins>
77             <plugin>
78                 <groupId>org.apache.felix</groupId>
79                 <artifactId>maven-bundle-plugin</artifactId>
80                 <configuration>
81                     <instructions>
82                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.client</Automatic-Module-Name>
83                     </instructions>
84                 </configuration>
85             </plugin>
86             <plugin>
87                 <artifactId>maven-jar-plugin</artifactId>
88                 <executions>
89                     <execution>
90                         <goals>
91                             <goal>test-jar</goal>
92                         </goals>
93                     </execution>
94                 </executions>
95             </plugin>
96             <plugin>
97                 <artifactId>maven-source-plugin</artifactId>
98                 <executions>
99                     <execution>
100                         <goals>
101                             <goal>test-jar-no-fork</goal>
102                         </goals>
103                     </execution>
104                 </executions>
105             </plugin>
106         </plugins>
107     </build>
108
109     <scm>
110         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
111         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
112         <tag>HEAD</tag>
113         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
114     </scm>
115 </project>