8caa7d00c46f3e6946e8681d5399da906f8bf286
[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>1.11.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-clustering-commons</artifactId>
12   <version>1.11.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <!-- Java -->
17     <dependency>
18       <groupId>org.xmlunit</groupId>
19       <artifactId>xmlunit-legacy</artifactId>
20     </dependency>
21
22     <dependency>
23       <groupId>org.mockito</groupId>
24       <artifactId>mockito-core</artifactId>
25       <scope>test</scope>
26     </dependency>
27     <dependency>
28       <groupId>org.slf4j</groupId>
29       <artifactId>slf4j-simple</artifactId>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.yangtools</groupId>
34       <artifactId>yang-test-util</artifactId>
35     </dependency>
36
37     <!-- Apache -->
38     <dependency>
39       <groupId>commons-lang</groupId>
40       <artifactId>commons-lang</artifactId>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>commons-io</groupId>
45       <artifactId>commons-io</artifactId>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.apache.commons</groupId>
50       <artifactId>commons-lang3</artifactId>
51       <scope>test</scope>
52     </dependency>
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       <!-- 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.12</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>com.typesafe.akka</groupId>
87       <artifactId>akka-testkit_2.12</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>com.typesafe.akka</groupId>
91       <artifactId>akka-persistence-tck_2.12</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
108     <!-- Google -->
109     <dependency>
110       <groupId>com.google.guava</groupId>
111       <artifactId>guava-testlib</artifactId>
112     </dependency>
113
114     <!-- Scala -->
115     <dependency>
116       <groupId>org.scala-lang</groupId>
117       <artifactId>scala-library</artifactId>
118     </dependency>
119
120     <!-- OpenDaylight -->
121     <dependency>
122       <groupId>org.opendaylight.yangtools</groupId>
123       <artifactId>util</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.yangtools</groupId>
127       <artifactId>yang-data-api</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>org.opendaylight.yangtools</groupId>
131       <artifactId>yang-data-impl</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.yangtools</groupId>
135       <artifactId>yang-model-api</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>org.opendaylight.yangtools</groupId>
139       <artifactId>yang-model-util</artifactId>
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         <groupId>org.apache.maven.plugins</groupId>
159         <artifactId>maven-jar-plugin</artifactId>
160         <executions>
161           <execution>
162             <goals>
163               <goal>test-jar</goal>
164             </goals>
165           </execution>
166         </executions>
167       </plugin>
168     </plugins>
169   </build>
170
171   <scm>
172     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
173     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
174     <tag>HEAD</tag>
175     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
176   </scm>
177
178 </project>