Use new Karaf 3 odlparent features
[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.5.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
18     <dependency>
19       <groupId>org.slf4j</groupId>
20       <artifactId>slf4j-simple</artifactId>
21     </dependency>
22   </dependencies>
23
24   <build>
25     <plugins>
26       <plugin>
27         <groupId>org.apache.felix</groupId>
28         <artifactId>maven-bundle-plugin</artifactId>
29         <extensions>true</extensions>
30         <configuration>
31           <instructions>
32             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
33             <Export-package>org.opendaylight.controller.cluster.example</Export-package>
34             <Import-Package>*</Import-Package>
35             <DynamicImport-Package>*</DynamicImport-Package>
36           </instructions>
37         </configuration>
38       </plugin>
39     </plugins>
40   </build>
41   <scm>
42     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
43     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
44     <tag>HEAD</tag>
45     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
46   </scm>
47 </project>