CONTROLLER-1764: avoid refreshes
[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>config-parent</artifactId>
7     <version>0.8.0-SNAPSHOT</version>
8     <relativePath>../../config/config-parent</relativePath>
9   </parent>
10
11   <artifactId>sal-clustering-commons</artifactId>
12   <version>1.7.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <!-- Java -->
17     <dependency>
18       <groupId>junit</groupId>
19       <artifactId>junit</artifactId>
20       <scope>test</scope>
21     </dependency>
22     <dependency>
23       <groupId>xmlunit</groupId>
24       <artifactId>xmlunit</artifactId>
25     </dependency>
26
27     <dependency>
28       <groupId>org.mockito</groupId>
29       <artifactId>mockito-core</artifactId>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>org.slf4j</groupId>
34       <artifactId>slf4j-simple</artifactId>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.yangtools</groupId>
39       <artifactId>yang-test-util</artifactId>
40     </dependency>
41
42     <!-- Apache -->
43     <dependency>
44       <groupId>commons-lang</groupId>
45       <artifactId>commons-lang</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>commons-io</groupId>
49       <artifactId>commons-io</artifactId>
50       <scope>test</scope>
51     </dependency>
52
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</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>com.google.protobuf</groupId>
112       <artifactId>protobuf-java</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>com.google.guava</groupId>
116       <artifactId>guava-testlib</artifactId>
117     </dependency>
118
119     <!-- Scala -->
120     <dependency>
121       <groupId>org.scala-lang</groupId>
122       <artifactId>scala-library</artifactId>
123     </dependency>
124
125     <!-- OpenDaylight -->
126     <dependency>
127       <groupId>org.opendaylight.yangtools</groupId>
128       <artifactId>util</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.yangtools</groupId>
132       <artifactId>yang-data-api</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.yangtools</groupId>
136       <artifactId>yang-data-impl</artifactId>
137     </dependency>
138     <dependency>
139       <groupId>org.opendaylight.yangtools</groupId>
140       <artifactId>yang-model-api</artifactId>
141     </dependency>
142     <dependency>
143       <groupId>org.opendaylight.yangtools</groupId>
144       <artifactId>yang-model-util</artifactId>
145     </dependency>
146   </dependencies>
147
148   <build>
149     <plugins>
150       <plugin>
151         <groupId>org.apache.felix</groupId>
152         <artifactId>maven-bundle-plugin</artifactId>
153         <extensions>true</extensions>
154         <configuration>
155         <instructions>
156           <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
157           <Export-Package>org.opendaylight.controller.cluster.schema.provider.impl, {local-packages}</Export-Package>
158           <DynamicImport-Package>*</DynamicImport-Package>
159         </instructions>
160         </configuration>
161       </plugin>
162       <plugin>
163         <groupId>org.apache.maven.plugins</groupId>
164         <artifactId>maven-jar-plugin</artifactId>
165         <executions>
166           <execution>
167             <goals>
168               <goal>test-jar</goal>
169             </goals>
170           </execution>
171         </executions>
172       </plugin>
173       <plugin>
174          <groupId>org.apache.maven.plugins</groupId>
175          <artifactId>maven-checkstyle-plugin</artifactId>
176          <configuration>
177            <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
178          </configuration>
179       </plugin>
180       <plugin>
181         <groupId>org.codehaus.mojo</groupId>
182         <artifactId>findbugs-maven-plugin</artifactId>
183         <configuration>
184           <failOnError>true</failOnError>
185         </configuration>
186       </plugin>
187     </plugins>
188   </build>
189
190   <scm>
191     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
192     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
193     <tag>HEAD</tag>
194     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
195   </scm>
196
197 </project>