7616575fc55206fa884a7e9752354ab49d07f132
[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.4-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-actor_2.13</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>com.typesafe.akka</groupId>
61       <artifactId>akka-testkit_2.13</artifactId>
62       <scope>test</scope>
63     </dependency>
64
65     <!-- Scala -->
66     <dependency>
67       <groupId>org.scala-lang</groupId>
68       <artifactId>scala-library</artifactId>
69     </dependency>
70
71     <!-- OpenDaylight -->
72     <dependency>
73       <groupId>org.opendaylight.mdsal</groupId>
74       <artifactId>mdsal-binding-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-akka-raft</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal-distributed-datastore</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.mdsal</groupId>
86       <artifactId>yang-binding</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.yangtools</groupId>
90       <artifactId>yang-common</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.apache.commons</groupId>
94       <artifactId>commons-lang3</artifactId>
95     </dependency>
96
97   </dependencies>
98
99   <build>
100     <plugins>
101       <plugin>
102         <groupId>org.apache.felix</groupId>
103         <artifactId>maven-bundle-plugin</artifactId>
104         <extensions>true</extensions>
105         <configuration>
106           <instructions>
107             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
108             <Export-Package></Export-Package>
109           </instructions>
110         </configuration>
111       </plugin>
112     </plugins>
113   </build>
114
115   <scm>
116     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
117     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
118     <tag>HEAD</tag>
119     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
120   </scm>
121
122 </project>
123