1dc0f9e38980884e0385c21d87d260e681d92f16
[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>odlparent</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <version>1.5.0-SNAPSHOT</version>
13   <artifactId>sal-akka-raft-example</artifactId>
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.5.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   </dependencies>
39
40   <build>
41     <plugins>
42       <plugin>
43         <groupId>org.apache.felix</groupId>
44         <artifactId>maven-bundle-plugin</artifactId>
45         <extensions>true</extensions>
46         <configuration>
47           <instructions>
48             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
49             <Export-package>org.opendaylight.controller.cluster.example</Export-package>
50             <Import-Package>*</Import-Package>
51             <DynamicImport-Package>*</DynamicImport-Package>
52           </instructions>
53         </configuration>
54       </plugin>
55     </plugins>
56   </build>
57
58   <profiles>
59     <!-- Turn off doclint on aggregated API javadoc build. -->
60     <profile>
61       <id>jdk8</id>
62       <activation>
63         <jdk>[1.8,)</jdk>
64       </activation>
65
66       <build>
67         <plugins>
68           <plugin>
69             <groupId>org.apache.maven.plugins</groupId>
70             <artifactId>maven-javadoc-plugin</artifactId>
71             <configuration>
72               <additionalparam>-Xdoclint:none</additionalparam>
73             </configuration>
74           </plugin>
75         </plugins>
76       </build>
77     </profile>
78   </profiles>
79   <scm>
80     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
82     <tag>HEAD</tag>
83     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
84   </scm>
85 </project>