Bump versions to 4.0.7-SNAPSHOT
[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>4.0.7-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-clustering-commons</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <!-- Java -->
16     <dependency>
17       <groupId>org.xmlunit</groupId>
18       <artifactId>xmlunit-legacy</artifactId>
19     </dependency>
20
21     <dependency>
22       <groupId>org.slf4j</groupId>
23       <artifactId>slf4j-simple</artifactId>
24       <scope>test</scope>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>yang-test-util</artifactId>
29     </dependency>
30
31     <!-- Apache -->
32     <dependency>
33       <groupId>commons-lang</groupId>
34       <artifactId>commons-lang</artifactId>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>commons-io</groupId>
39       <artifactId>commons-io</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.apache.commons</groupId>
44       <artifactId>commons-lang3</artifactId>
45       <scope>test</scope>
46     </dependency>
47
48     <!-- Akka -->
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>repackaged-akka</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>com.typesafe.akka</groupId>
55       <artifactId>akka-testkit_2.13</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>com.typesafe.akka</groupId>
59       <artifactId>akka-persistence-tck_2.13</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.scalatestplus</groupId>
63       <artifactId>junit-4-13_2.13</artifactId>
64       <scope>test</scope>
65     </dependency>
66
67     <dependency>
68       <!-- Enforce Netty’s optional dependency on servlet API -->
69       <!-- FIXME: is this really needed ? -->
70       <groupId>javax.servlet</groupId>
71       <artifactId>javax.servlet-api</artifactId>
72     </dependency>
73
74     <!-- Codahale -->
75     <dependency>
76       <groupId>io.dropwizard.metrics</groupId>
77       <artifactId>metrics-core</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>io.dropwizard.metrics</groupId>
81       <artifactId>metrics-graphite</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>io.dropwizard.metrics</groupId>
85       <artifactId>metrics-jmx</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>com.guicedee.services</groupId>
89       <artifactId>javax.inject</artifactId>
90       <scope>provided</scope>
91       <optional>true</optional>
92     </dependency>
93     <dependency>
94       <groupId>org.kohsuke.metainf-services</groupId>
95       <artifactId>metainf-services</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.osgi</groupId>
99       <artifactId>osgi.cmpn</artifactId>
100     </dependency>
101
102     <!-- Google -->
103     <dependency>
104       <groupId>com.google.guava</groupId>
105       <artifactId>guava-testlib</artifactId>
106     </dependency>
107
108     <!-- Scala -->
109     <dependency>
110       <groupId>org.scala-lang</groupId>
111       <artifactId>scala-library</artifactId>
112     </dependency>
113
114     <!-- OpenDaylight -->
115     <dependency>
116       <groupId>org.opendaylight.yangtools</groupId>
117       <artifactId>util</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.yangtools</groupId>
121       <artifactId>yang-data-api</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.yangtools</groupId>
125       <artifactId>yang-data-impl</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>org.opendaylight.yangtools</groupId>
129       <artifactId>yang-model-api</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.yangtools</groupId>
133       <artifactId>yang-data-codec-binfmt</artifactId>
134     </dependency>
135     <dependency>
136       <groupId>org.opendaylight.yangtools</groupId>
137       <artifactId>yang-repo-spi</artifactId>
138     </dependency>
139
140     <!-- Compression -->
141     <dependency>
142       <groupId>org.lz4</groupId>
143       <artifactId>lz4-java</artifactId>
144       <version>1.8.0</version>
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         <artifactId>maven-jar-plugin</artifactId>
164         <executions>
165           <execution>
166             <goals>
167               <goal>test-jar</goal>
168             </goals>
169           </execution>
170         </executions>
171       </plugin>
172       <plugin>
173         <artifactId>maven-source-plugin</artifactId>
174         <executions>
175           <execution>
176             <goals>
177               <goal>test-jar-no-fork</goal>
178             </goals>
179           </execution>
180         </executions>
181       </plugin>
182     </plugins>
183   </build>
184
185   <scm>
186     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
187     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
188     <tag>HEAD</tag>
189     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
190   </scm>
191
192 </project>