Cleanup versions across modules
[controller.git] / opendaylight / md-sal / sal-cluster-admin-impl / 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>2.0.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-cluster-admin-impl</artifactId>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>sal-cluster-admin-api</artifactId>
19     </dependency>
20
21     <!-- Tests -->
22     <dependency>
23       <groupId>org.slf4j</groupId>
24       <artifactId>slf4j-simple</artifactId>
25       <scope>test</scope>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal-akka-raft</artifactId>
30       <type>test-jar</type>
31       <scope>test</scope>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-distributed-datastore</artifactId>
36       <type>test-jar</type>
37       <version>${project.version}</version>
38       <scope>test</scope>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>yang-test-util</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller.samples</groupId>
46       <artifactId>clustering-it-model</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>commons-lang</groupId>
51       <artifactId>commons-lang</artifactId>
52       <scope>test</scope>
53     </dependency>
54
55     <!-- Akka -->
56     <dependency>
57       <groupId>com.typesafe.akka</groupId>
58       <artifactId>akka-actor_2.13</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>com.typesafe.akka</groupId>
62       <artifactId>akka-testkit_2.13</artifactId>
63       <scope>test</scope>
64     </dependency>
65
66     <!-- Scala -->
67     <dependency>
68       <groupId>org.scala-lang</groupId>
69       <artifactId>scala-library</artifactId>
70     </dependency>
71
72     <!-- OpenDaylight -->
73     <dependency>
74       <groupId>org.opendaylight.mdsal</groupId>
75       <artifactId>mdsal-binding-api</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>sal-akka-raft</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal-distributed-datastore</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.mdsal</groupId>
87       <artifactId>yang-binding</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.yangtools</groupId>
91       <artifactId>yang-common</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.apache.commons</groupId>
95       <artifactId>commons-lang3</artifactId>
96     </dependency>
97
98   </dependencies>
99
100   <build>
101     <plugins>
102       <plugin>
103         <groupId>org.apache.felix</groupId>
104         <artifactId>maven-bundle-plugin</artifactId>
105         <extensions>true</extensions>
106         <configuration>
107           <instructions>
108             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
109             <Export-Package></Export-Package>
110           </instructions>
111         </configuration>
112       </plugin>
113     </plugins>
114   </build>
115
116   <scm>
117     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
118     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
119     <tag>HEAD</tag>
120     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
121   </scm>
122
123 </project>
124