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