Bump versions to 7.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>7.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-io</groupId>
34       <artifactId>commons-io</artifactId>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.apache.commons</groupId>
39       <artifactId>commons-lang3</artifactId>
40       <scope>test</scope>
41     </dependency>
42
43     <!-- Akka -->
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>repackaged-akka</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>com.typesafe.akka</groupId>
50       <artifactId>akka-testkit_2.13</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>com.typesafe.akka</groupId>
54       <artifactId>akka-persistence-tck_2.13</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.scalatestplus</groupId>
58       <artifactId>junit-4-13_2.13</artifactId>
59       <scope>test</scope>
60     </dependency>
61
62     <dependency>
63       <!-- Enforce Netty’s optional dependency on servlet API -->
64       <!-- FIXME: is this really needed ? -->
65       <groupId>javax.servlet</groupId>
66       <artifactId>javax.servlet-api</artifactId>
67     </dependency>
68
69     <!-- Codahale -->
70     <dependency>
71       <groupId>io.dropwizard.metrics</groupId>
72       <artifactId>metrics-core</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>io.dropwizard.metrics</groupId>
76       <artifactId>metrics-graphite</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>io.dropwizard.metrics</groupId>
80       <artifactId>metrics-jmx</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.guicedee.services</groupId>
84       <artifactId>javax.inject</artifactId>
85       <scope>provided</scope>
86       <optional>true</optional>
87     </dependency>
88     <dependency>
89       <groupId>org.kohsuke.metainf-services</groupId>
90       <artifactId>metainf-services</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.osgi</groupId>
94       <artifactId>org.osgi.service.component.annotations</artifactId>
95     </dependency>
96
97     <!-- Google -->
98     <dependency>
99       <groupId>com.google.guava</groupId>
100       <artifactId>guava-testlib</artifactId>
101     </dependency>
102
103     <!-- Scala -->
104     <dependency>
105       <groupId>org.scala-lang</groupId>
106       <artifactId>scala-library</artifactId>
107     </dependency>
108
109     <!-- OpenDaylight -->
110     <dependency>
111       <groupId>org.opendaylight.yangtools</groupId>
112       <artifactId>util</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.yangtools</groupId>
116       <artifactId>yang-data-api</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.yangtools</groupId>
120       <artifactId>yang-data-impl</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.yangtools</groupId>
124       <artifactId>yang-model-api</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>org.opendaylight.yangtools</groupId>
128       <artifactId>yang-data-codec-binfmt</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.yangtools</groupId>
132       <artifactId>yang-repo-spi</artifactId>
133     </dependency>
134
135     <!-- Compression -->
136     <dependency>
137       <groupId>org.lz4</groupId>
138       <artifactId>lz4-java</artifactId>
139       <version>1.8.0</version>
140     </dependency>
141   </dependencies>
142
143   <build>
144     <plugins>
145       <plugin>
146         <groupId>org.apache.felix</groupId>
147         <artifactId>maven-bundle-plugin</artifactId>
148         <extensions>true</extensions>
149         <configuration>
150         <instructions>
151           <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
152           <Export-Package>org.opendaylight.controller.cluster.schema.provider.impl, {local-packages}</Export-Package>
153           <DynamicImport-Package>*</DynamicImport-Package>
154         </instructions>
155         </configuration>
156       </plugin>
157       <plugin>
158         <artifactId>maven-jar-plugin</artifactId>
159         <executions>
160           <execution>
161             <goals>
162               <goal>test-jar</goal>
163             </goals>
164           </execution>
165         </executions>
166       </plugin>
167       <plugin>
168         <artifactId>maven-source-plugin</artifactId>
169         <executions>
170           <execution>
171             <goals>
172               <goal>test-jar-no-fork</goal>
173             </goals>
174           </execution>
175         </executions>
176       </plugin>
177     </plugins>
178   </build>
179
180   <scm>
181     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
182     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
183     <tag>HEAD</tag>
184     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
185   </scm>
186
187 </project>