Enable findbugs in md-sal parent pom
[controller.git] / opendaylight / md-sal / sal-clustering-commons / 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>1.8.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-clustering-commons</artifactId>
12   <version>1.8.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <!-- Java -->
17     <dependency>
18       <groupId>xmlunit</groupId>
19       <artifactId>xmlunit</artifactId>
20       <scope>test</scope>
21     </dependency>
22
23     <dependency>
24       <groupId>org.mockito</groupId>
25       <artifactId>mockito-core</artifactId>
26       <scope>test</scope>
27     </dependency>
28     <dependency>
29       <groupId>org.slf4j</groupId>
30       <artifactId>slf4j-simple</artifactId>
31       <scope>test</scope>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>yang-test-util</artifactId>
36     </dependency>
37
38     <!-- Apache -->
39     <dependency>
40       <groupId>commons-lang</groupId>
41       <artifactId>commons-lang</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>commons-io</groupId>
45       <artifactId>commons-io</artifactId>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.apache.commons</groupId>
50       <artifactId>commons-lang3</artifactId>
51       <scope>test</scope>
52     </dependency>
53
54     <!-- Akka -->
55     <dependency>
56       <groupId>com.typesafe.akka</groupId>
57       <artifactId>akka-actor_2.12</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>com.typesafe.akka</groupId>
61       <artifactId>akka-cluster_2.12</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>com.typesafe.akka</groupId>
65       <artifactId>akka-osgi_2.12</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>com.typesafe.akka</groupId>
69       <artifactId>akka-persistence_2.12</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>com.typesafe.akka</groupId>
73       <artifactId>akka-remote_2.12</artifactId>
74     </dependency>
75     <dependency>
76       <!-- Enforce Netty’s optional dependency on servlet API -->
77       <groupId>javax.servlet</groupId>
78       <artifactId>javax.servlet-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>com.typesafe.akka</groupId>
82       <artifactId>akka-slf4j_2.12</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>com.typesafe.akka</groupId>
86       <artifactId>akka-testkit_2.12</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>com.typesafe.akka</groupId>
90       <artifactId>akka-persistence-tck_2.12</artifactId>
91     </dependency>
92
93     <!-- Codahale -->
94     <dependency>
95       <groupId>io.dropwizard.metrics</groupId>
96       <artifactId>metrics-core</artifactId>
97       <version>3.1.2</version>
98     </dependency>
99     <dependency>
100       <groupId>io.dropwizard.metrics</groupId>
101       <artifactId>metrics-graphite</artifactId>
102       <version>3.1.2</version>
103     </dependency>
104
105     <!-- Google -->
106     <dependency>
107       <groupId>com.google.guava</groupId>
108       <artifactId>guava-testlib</artifactId>
109     </dependency>
110
111     <!-- Scala -->
112     <dependency>
113       <groupId>org.scala-lang</groupId>
114       <artifactId>scala-library</artifactId>
115     </dependency>
116
117     <!-- OpenDaylight -->
118     <dependency>
119       <groupId>org.opendaylight.yangtools</groupId>
120       <artifactId>util</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.yangtools</groupId>
124       <artifactId>yang-data-api</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>org.opendaylight.yangtools</groupId>
128       <artifactId>yang-data-impl</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.yangtools</groupId>
132       <artifactId>yang-model-api</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.yangtools</groupId>
136       <artifactId>yang-model-util</artifactId>
137     </dependency>
138   </dependencies>
139
140   <build>
141     <plugins>
142       <plugin>
143         <groupId>org.apache.felix</groupId>
144         <artifactId>maven-bundle-plugin</artifactId>
145         <extensions>true</extensions>
146         <configuration>
147         <instructions>
148           <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
149           <Export-Package>org.opendaylight.controller.cluster.schema.provider.impl, {local-packages}</Export-Package>
150           <DynamicImport-Package>*</DynamicImport-Package>
151         </instructions>
152         </configuration>
153       </plugin>
154       <plugin>
155         <groupId>org.apache.maven.plugins</groupId>
156         <artifactId>maven-jar-plugin</artifactId>
157         <executions>
158           <execution>
159             <goals>
160               <goal>test-jar</goal>
161             </goals>
162           </execution>
163         </executions>
164       </plugin>
165     </plugins>
166   </build>
167
168   <scm>
169     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
170     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
171     <tag>HEAD</tag>
172     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
173   </scm>
174
175 </project>