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