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