Bug 8163: getDataTreeChangeListenerExecutor() & DataBrokerTestModule
[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.odlparent</groupId>
6     <artifactId>bundle-parent</artifactId>
7     <version>2.0.2</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-akka-raft-example</artifactId>
13   <version>1.6.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.controller</groupId>
20         <artifactId>mdsal-artifacts</artifactId>
21         <version>1.6.0-SNAPSHOT</version>
22         <type>pom</type>
23         <scope>import</scope>
24       </dependency>
25     </dependencies>
26   </dependencyManagement>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal-akka-raft</artifactId>
32     </dependency>
33
34     <dependency>
35       <groupId>org.slf4j</groupId>
36       <artifactId>slf4j-simple</artifactId>
37     </dependency>
38
39     <dependency>
40       <groupId>com.google.guava</groupId>
41       <artifactId>guava</artifactId>
42     </dependency>
43   </dependencies>
44
45   <build>
46     <plugins>
47       <plugin>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>maven-bundle-plugin</artifactId>
50         <extensions>true</extensions>
51         <configuration>
52           <instructions>
53             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
54             <Export-package>org.opendaylight.controller.cluster.example</Export-package>
55             <Import-Package>*</Import-Package>
56             <DynamicImport-Package>*</DynamicImport-Package>
57           </instructions>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62
63   <scm>
64     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
65     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
66     <tag>HEAD</tag>
67     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
68   </scm>
69
70   <!--
71       Maven Site Configuration
72
73       The following configuration is necessary for maven-site-plugin to
74       correctly identify the correct deployment path for OpenDaylight Maven
75       sites.
76   -->
77   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
78
79   <distributionManagement>
80     <site>
81       <id>opendaylight-site</id>
82       <url>${nexus.site.url}/${project.artifactId}/</url>
83     </site>
84   </distributionManagement>
85 </project>