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