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