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