Bump versions by x.(y+1).z for next dev cycle
[controller.git] / opendaylight / md-sal / sal-akka-raft-example / 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.9.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-akka-raft-example</artifactId>
13   <version>1.9.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>sal-akka-raft</artifactId>
20     </dependency>
21
22     <dependency>
23       <groupId>org.slf4j</groupId>
24       <artifactId>slf4j-simple</artifactId>
25     </dependency>
26   </dependencies>
27
28   <build>
29     <plugins>
30       <plugin>
31         <groupId>org.apache.felix</groupId>
32         <artifactId>maven-bundle-plugin</artifactId>
33         <extensions>true</extensions>
34         <configuration>
35           <instructions>
36             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
37           </instructions>
38         </configuration>
39       </plugin>
40     </plugins>
41   </build>
42
43   <scm>
44     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
45     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
46     <tag>HEAD</tag>
47     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
48   </scm>
49
50 </project>