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