Bump versions to 3.0.6-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>3.0.6-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     <dependency>
36       <groupId>org.osgi</groupId>
37       <artifactId>org.osgi.core</artifactId>
38     </dependency>
39
40     <!-- Test Dependencies -->
41     <dependency>
42       <groupId>com.typesafe.akka</groupId>
43       <artifactId>akka-testkit_2.13</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.awaitility</groupId>
47       <artifactId>awaitility</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.slf4j</groupId>
52       <artifactId>slf4j-simple</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>commons-io</groupId>
57       <artifactId>commons-io</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>commons-lang</groupId>
62       <artifactId>commons-lang</artifactId>
63       <scope>test</scope>
64     </dependency>
65   </dependencies>
66
67   <build>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.felix</groupId>
71         <artifactId>maven-bundle-plugin</artifactId>
72         <extensions>true</extensions>
73         <configuration>
74           <instructions>
75             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
76             <Export-package>org.opendaylight.cluster.raft</Export-package>
77             <DynamicImport-Package>*</DynamicImport-Package>
78           </instructions>
79         </configuration>
80       </plugin>
81       <plugin>
82         <artifactId>maven-jar-plugin</artifactId>
83         <executions>
84           <execution>
85             <goals>
86               <goal>test-jar</goal>
87             </goals>
88           </execution>
89         </executions>
90       </plugin>
91       <plugin>
92         <artifactId>maven-source-plugin</artifactId>
93         <executions>
94           <execution>
95             <goals>
96               <goal>test-jar-no-fork</goal>
97             </goals>
98           </execution>
99         </executions>
100       </plugin>
101     </plugins>
102   </build>
103
104   <scm>
105     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
106     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
107     <tag>HEAD</tag>
108     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
109   </scm>
110 </project>