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