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