fd5ac1470e4283e5fdff02b987c4d3c8a06905cc
[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.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-clustering-commons</artifactId>
12   <packaging>bundle</packaging>
13
14   <properties>
15     <!-- FIXME: Remove this -->
16     <odlparent.modernizer.enforce>false</odlparent.modernizer.enforce>
17   </properties>
18
19   <dependencies>
20     <!-- Java -->
21     <dependency>
22       <groupId>org.xmlunit</groupId>
23       <artifactId>xmlunit-legacy</artifactId>
24     </dependency>
25
26     <dependency>
27       <groupId>org.slf4j</groupId>
28       <artifactId>slf4j-simple</artifactId>
29       <scope>test</scope>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.yangtools</groupId>
33       <artifactId>yang-test-util</artifactId>
34     </dependency>
35
36     <!-- Apache -->
37     <dependency>
38       <groupId>commons-lang</groupId>
39       <artifactId>commons-lang</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>commons-io</groupId>
44       <artifactId>commons-io</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.apache.commons</groupId>
49       <artifactId>commons-lang3</artifactId>
50       <scope>test</scope>
51     </dependency>
52
53     <!-- Akka -->
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>repackaged-akka</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>com.typesafe.akka</groupId>
60       <artifactId>akka-testkit_2.13</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>com.typesafe.akka</groupId>
64       <artifactId>akka-persistence-tck_2.13</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.scalatestplus</groupId>
68       <artifactId>junit-4-13_2.13</artifactId>
69       <scope>test</scope>
70     </dependency>
71
72     <dependency>
73       <!-- Enforce Netty’s optional dependency on servlet API -->
74       <!-- FIXME: is this really needed ? -->
75       <groupId>javax.servlet</groupId>
76       <artifactId>javax.servlet-api</artifactId>
77     </dependency>
78
79     <!-- Codahale -->
80     <dependency>
81       <groupId>io.dropwizard.metrics</groupId>
82       <artifactId>metrics-core</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>io.dropwizard.metrics</groupId>
86       <artifactId>metrics-graphite</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>io.dropwizard.metrics</groupId>
90       <artifactId>metrics-jmx</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>com.guicedee.services</groupId>
94       <artifactId>javax.inject</artifactId>
95       <scope>provided</scope>
96       <optional>true</optional>
97     </dependency>
98     <dependency>
99       <groupId>org.kohsuke.metainf-services</groupId>
100       <artifactId>metainf-services</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.osgi</groupId>
104       <artifactId>osgi.cmpn</artifactId>
105     </dependency>
106
107     <!-- Google -->
108     <dependency>
109       <groupId>com.google.guava</groupId>
110       <artifactId>guava-testlib</artifactId>
111     </dependency>
112
113     <!-- Scala -->
114     <dependency>
115       <groupId>org.scala-lang</groupId>
116       <artifactId>scala-library</artifactId>
117     </dependency>
118
119     <!-- OpenDaylight -->
120     <dependency>
121       <groupId>org.opendaylight.yangtools</groupId>
122       <artifactId>util</artifactId>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.yangtools</groupId>
126       <artifactId>yang-data-api</artifactId>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.yangtools</groupId>
130       <artifactId>yang-data-impl</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>org.opendaylight.yangtools</groupId>
134       <artifactId>yang-model-api</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>org.opendaylight.yangtools</groupId>
138       <artifactId>yang-data-codec-binfmt</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>org.opendaylight.yangtools</groupId>
142       <artifactId>yang-repo-spi</artifactId>
143     </dependency>
144
145     <!-- Compression -->
146     <dependency>
147       <groupId>org.lz4</groupId>
148       <artifactId>lz4-java</artifactId>
149       <version>1.7.1</version>
150     </dependency>
151   </dependencies>
152
153   <build>
154     <plugins>
155       <plugin>
156         <groupId>org.apache.felix</groupId>
157         <artifactId>maven-bundle-plugin</artifactId>
158         <extensions>true</extensions>
159         <configuration>
160         <instructions>
161           <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
162           <Export-Package>org.opendaylight.controller.cluster.schema.provider.impl, {local-packages}</Export-Package>
163           <DynamicImport-Package>*</DynamicImport-Package>
164         </instructions>
165         </configuration>
166       </plugin>
167       <plugin>
168         <artifactId>maven-jar-plugin</artifactId>
169         <executions>
170           <execution>
171             <goals>
172               <goal>test-jar</goal>
173             </goals>
174           </execution>
175         </executions>
176       </plugin>
177       <plugin>
178         <artifactId>maven-source-plugin</artifactId>
179         <executions>
180           <execution>
181             <goals>
182               <goal>test-jar-no-fork</goal>
183             </goals>
184           </execution>
185         </executions>
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>