2da58c373b7c49a0d31f41025cb2188f9e723425
[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>3.0.0-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>com.typesafe.akka</groupId>
51       <artifactId>akka-actor_2.13</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>com.typesafe.akka</groupId>
55       <artifactId>akka-cluster_2.13</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>com.typesafe.akka</groupId>
59       <artifactId>akka-osgi_2.13</artifactId>
60       <exclusions>
61         <exclusion>
62           <groupId>org.osgi</groupId>
63           <artifactId>org.osgi.compendium</artifactId>
64         </exclusion>
65       </exclusions>
66     </dependency>
67     <dependency>
68       <groupId>com.typesafe.akka</groupId>
69       <artifactId>akka-persistence_2.13</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>com.typesafe.akka</groupId>
73       <artifactId>akka-remote_2.13</artifactId>
74     </dependency>
75     <dependency>
76       <!-- Enforce Netty’s optional dependency on servlet API -->
77       <!-- FIXME: is this really needed ? -->
78       <groupId>javax.servlet</groupId>
79       <artifactId>javax.servlet-api</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>com.typesafe.akka</groupId>
83       <artifactId>akka-slf4j_2.13</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>com.typesafe.akka</groupId>
87       <artifactId>akka-testkit_2.13</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>com.typesafe.akka</groupId>
91       <artifactId>akka-persistence-tck_2.13</artifactId>
92     </dependency>
93
94     <!-- Codahale -->
95     <dependency>
96       <groupId>io.dropwizard.metrics</groupId>
97       <artifactId>metrics-core</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>io.dropwizard.metrics</groupId>
101       <artifactId>metrics-graphite</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>io.dropwizard.metrics</groupId>
105       <artifactId>metrics-jmx</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>javax.inject</groupId>
109       <artifactId>javax.inject</artifactId>
110       <scope>provided</scope>
111       <optional>true</optional>
112     </dependency>
113     <dependency>
114       <groupId>org.kohsuke.metainf-services</groupId>
115       <artifactId>metainf-services</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.osgi</groupId>
119       <artifactId>osgi.cmpn</artifactId>
120     </dependency>
121
122     <!-- Google -->
123     <dependency>
124       <groupId>com.google.guava</groupId>
125       <artifactId>guava-testlib</artifactId>
126     </dependency>
127
128     <!-- Scala -->
129     <dependency>
130       <groupId>org.scala-lang</groupId>
131       <artifactId>scala-library</artifactId>
132     </dependency>
133
134     <!-- OpenDaylight -->
135     <dependency>
136       <groupId>org.opendaylight.yangtools</groupId>
137       <artifactId>util</artifactId>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.yangtools</groupId>
141       <artifactId>yang-data-api</artifactId>
142     </dependency>
143     <dependency>
144       <groupId>org.opendaylight.yangtools</groupId>
145       <artifactId>yang-data-impl</artifactId>
146     </dependency>
147     <dependency>
148       <groupId>org.opendaylight.yangtools</groupId>
149       <artifactId>yang-model-api</artifactId>
150     </dependency>
151     <dependency>
152       <groupId>org.opendaylight.yangtools</groupId>
153       <artifactId>yang-model-util</artifactId>
154     </dependency>
155     <dependency>
156       <groupId>org.opendaylight.yangtools</groupId>
157       <artifactId>yang-data-codec-binfmt</artifactId>
158     </dependency>
159
160     <!-- Compression -->
161     <dependency>
162       <groupId>org.lz4</groupId>
163       <artifactId>lz4-java</artifactId>
164       <version>1.7.1</version>
165     </dependency>
166   </dependencies>
167
168   <build>
169     <plugins>
170       <plugin>
171         <groupId>org.apache.felix</groupId>
172         <artifactId>maven-bundle-plugin</artifactId>
173         <extensions>true</extensions>
174         <configuration>
175         <instructions>
176           <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
177           <Export-Package>org.opendaylight.controller.cluster.schema.provider.impl, {local-packages}</Export-Package>
178           <DynamicImport-Package>*</DynamicImport-Package>
179         </instructions>
180         </configuration>
181       </plugin>
182       <plugin>
183         <artifactId>maven-jar-plugin</artifactId>
184         <executions>
185           <execution>
186             <goals>
187               <goal>test-jar</goal>
188             </goals>
189           </execution>
190         </executions>
191       </plugin>
192       <plugin>
193         <artifactId>maven-source-plugin</artifactId>
194         <executions>
195           <execution>
196             <goals>
197               <goal>test-jar-no-fork</goal>
198             </goals>
199           </execution>
200         </executions>
201       </plugin>
202     </plugins>
203   </build>
204
205   <scm>
206     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
207     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
208     <tag>HEAD</tag>
209     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
210   </scm>
211
212 </project>