Cleanup versions across modules
[controller.git] / opendaylight / md-sal / sal-akka-raft / 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-akka-raft</artifactId>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>sal-clustering-commons</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>com.typesafe.akka</groupId>
22       <artifactId>akka-actor_2.13</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>com.typesafe.akka</groupId>
26       <artifactId>akka-cluster_2.13</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>com.typesafe.akka</groupId>
30       <artifactId>akka-persistence_2.13</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>com.typesafe.akka</groupId>
34       <artifactId>akka-remote_2.13</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>com.typesafe.akka</groupId>
38       <artifactId>akka-slf4j_2.13</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.scala-lang</groupId>
42       <artifactId>scala-library</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.apache.commons</groupId>
46       <artifactId>commons-lang3</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.osgi</groupId>
50       <artifactId>org.osgi.core</artifactId>
51     </dependency>
52
53     <!-- Test Dependencies -->
54     <dependency>
55       <groupId>com.typesafe.akka</groupId>
56       <artifactId>akka-testkit_2.13</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.awaitility</groupId>
61       <artifactId>awaitility</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.slf4j</groupId>
66       <artifactId>slf4j-simple</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>commons-io</groupId>
71       <artifactId>commons-io</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>commons-lang</groupId>
76       <artifactId>commons-lang</artifactId>
77       <scope>test</scope>
78     </dependency>
79   </dependencies>
80
81   <build>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.felix</groupId>
85         <artifactId>maven-bundle-plugin</artifactId>
86         <extensions>true</extensions>
87         <configuration>
88           <instructions>
89             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
90             <Export-package>org.opendaylight.cluster.raft</Export-package>
91             <DynamicImport-Package>*</DynamicImport-Package>
92           </instructions>
93         </configuration>
94       </plugin>
95       <plugin>
96         <groupId>org.apache.maven.plugins</groupId>
97         <artifactId>maven-jar-plugin</artifactId>
98         <executions>
99           <execution>
100             <goals>
101               <goal>test-jar</goal>
102             </goals>
103           </execution>
104         </executions>
105       </plugin>
106     </plugins>
107   </build>
108
109   <scm>
110     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
111     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
112     <tag>HEAD</tag>
113     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
114   </scm>
115 </project>