Bump versions to 6.0.9-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.9-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   </dependencies>
57
58   <build>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.felix</groupId>
62         <artifactId>maven-bundle-plugin</artifactId>
63         <extensions>true</extensions>
64         <configuration>
65           <instructions>
66             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
67             <Export-package>org.opendaylight.cluster.raft</Export-package>
68             <DynamicImport-Package>*</DynamicImport-Package>
69           </instructions>
70         </configuration>
71       </plugin>
72       <plugin>
73         <artifactId>maven-jar-plugin</artifactId>
74         <executions>
75           <execution>
76             <goals>
77               <goal>test-jar</goal>
78             </goals>
79           </execution>
80         </executions>
81       </plugin>
82       <plugin>
83         <artifactId>maven-source-plugin</artifactId>
84         <executions>
85           <execution>
86             <goals>
87               <goal>test-jar-no-fork</goal>
88             </goals>
89           </execution>
90         </executions>
91       </plugin>
92     </plugins>
93   </build>
94
95   <scm>
96     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
97     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
98     <tag>HEAD</tag>
99     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
100   </scm>
101 </project>