Merge "BUG 3057 - notify added event source by topics created before"
[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>sal-parent</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-akka-raft-example</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>org.opendaylight.controller</groupId>
15       <artifactId>sal-akka-raft</artifactId>
16     </dependency>
17   </dependencies>
18
19   <build>
20     <plugins>
21       <plugin>
22         <groupId>org.apache.felix</groupId>
23         <artifactId>maven-bundle-plugin</artifactId>
24         <extensions>true</extensions>
25         <configuration>
26           <instructions>
27             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
28           </instructions>
29         </configuration>
30       </plugin>
31     </plugins>
32   </build>
33   <scm>
34     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
35     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
36     <tag>HEAD</tag>
37     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
38   </scm>
39 </project>