62e2c24f52ec2b4947e09754a360290661d56eb3
[controller.git] / opendaylight / md-sal / sal-akka-raft / 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.0</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-akka-raft</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-clustering-commons</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.google.guava</groupId>
35       <artifactId>guava</artifactId>
36     </dependency>
37
38     <dependency>
39       <groupId>com.typesafe.akka</groupId>
40       <artifactId>akka-actor_${scala.version}</artifactId>
41     </dependency>
42
43     <dependency>
44       <groupId>com.typesafe.akka</groupId>
45       <artifactId>akka-cluster_${scala.version}</artifactId>
46     </dependency>
47
48     <dependency>
49       <groupId>com.typesafe.akka</groupId>
50       <artifactId>akka-persistence_${scala.version}</artifactId>
51     </dependency>
52
53     <dependency>
54       <groupId>com.typesafe.akka</groupId>
55       <artifactId>akka-remote_${scala.version}</artifactId>
56     </dependency>
57
58     <dependency>
59       <groupId>com.typesafe.akka</groupId>
60       <artifactId>akka-testkit_${scala.version}</artifactId>
61       <scope>test</scope>
62     </dependency>
63
64     <dependency>
65       <groupId>org.osgi</groupId>
66       <artifactId>org.osgi.core</artifactId>
67     </dependency>
68
69     <dependency>
70       <groupId>org.scala-lang</groupId>
71       <artifactId>scala-library</artifactId>
72     </dependency>
73
74     <dependency>
75       <groupId>commons-io</groupId>
76       <artifactId>commons-io</artifactId>
77     </dependency>
78
79     <dependency>
80       <groupId>org.apache.commons</groupId>
81       <artifactId>commons-lang3</artifactId>
82     </dependency>
83
84     <dependency>
85       <groupId>com.typesafe.akka</groupId>
86       <artifactId>akka-slf4j_${scala.version}</artifactId>
87     </dependency>
88
89       <!-- Test Dependencies -->
90     <dependency>
91       <groupId>junit</groupId>
92       <artifactId>junit</artifactId>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.mockito</groupId>
97       <artifactId>mockito-core</artifactId>
98       <scope>test</scope>
99     </dependency>
100
101     <dependency>
102       <groupId>org.slf4j</groupId>
103       <artifactId>slf4j-simple</artifactId>
104       <scope>test</scope>
105     </dependency>
106
107   </dependencies>
108
109   <build>
110     <plugins>
111
112       <plugin>
113         <groupId>org.apache.felix</groupId>
114         <artifactId>maven-bundle-plugin</artifactId>
115         <extensions>true</extensions>
116         <configuration>
117           <instructions>
118             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
119             <Export-package>org.opendaylight.cluster.raft</Export-package>
120             <Import-Package>*</Import-Package>
121             <DynamicImport-Package>*</DynamicImport-Package>
122           </instructions>
123         </configuration>
124       </plugin>
125
126       <plugin>
127         <groupId>org.apache.maven.plugins</groupId>
128         <artifactId>maven-jar-plugin</artifactId>
129         <executions>
130           <execution>
131             <goals>
132               <goal>test-jar</goal>
133             </goals>
134           </execution>
135         </executions>
136       </plugin>
137
138       <plugin>
139         <groupId>org.apache.maven.plugins</groupId>
140         <artifactId>maven-checkstyle-plugin</artifactId>
141         <configuration>
142           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
143         </configuration>
144       </plugin>
145       <plugin>
146         <groupId>org.codehaus.mojo</groupId>
147         <artifactId>findbugs-maven-plugin</artifactId>
148         <configuration>
149           <failOnError>true</failOnError>
150         </configuration>
151       </plugin>
152     </plugins>
153   </build>
154
155   <scm>
156     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
157     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
158     <tag>HEAD</tag>
159     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
160   </scm>
161
162   <!--
163       Maven Site Configuration
164
165       The following configuration is necessary for maven-site-plugin to
166       correctly identify the correct deployment path for OpenDaylight Maven
167       sites.
168   -->
169   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
170
171   <distributionManagement>
172     <site>
173       <id>opendaylight-site</id>
174       <url>${nexus.site.url}/${project.artifactId}/</url>
175     </site>
176   </distributionManagement>
177 </project>