BUG-4964: Bump to akka-2.4.1
[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.controller</groupId>
6     <artifactId>sal-parent</artifactId>
7     <version>1.4.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-akka-raft</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>org.opendaylight.controller</groupId>
15       <artifactId>sal-clustering-commons</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>com.google.guava</groupId>
19       <artifactId>guava</artifactId>
20     </dependency>
21
22     <dependency>
23       <groupId>com.typesafe.akka</groupId>
24       <artifactId>akka-actor_${scala.version}</artifactId>
25     </dependency>
26
27     <dependency>
28       <groupId>com.typesafe.akka</groupId>
29       <artifactId>akka-cluster_${scala.version}</artifactId>
30     </dependency>
31
32     <dependency>
33       <groupId>com.typesafe.akka</groupId>
34       <artifactId>akka-persistence_${scala.version}</artifactId>
35     </dependency>
36
37     <dependency>
38       <groupId>com.typesafe.akka</groupId>
39       <artifactId>akka-remote_${scala.version}</artifactId>
40     </dependency>
41
42     <dependency>
43       <groupId>com.typesafe.akka</groupId>
44       <artifactId>akka-testkit_${scala.version}</artifactId>
45     </dependency>
46
47     <dependency>
48       <groupId>org.osgi</groupId>
49       <artifactId>org.osgi.core</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>org.scala-lang</groupId>
54       <artifactId>scala-library</artifactId>
55     </dependency>
56
57     <dependency>
58       <groupId>commons-io</groupId>
59       <artifactId>commons-io</artifactId>
60     </dependency>
61
62     <dependency>
63       <groupId>org.apache.commons</groupId>
64       <artifactId>commons-lang3</artifactId>
65     </dependency>
66
67     <dependency>
68       <groupId>com.typesafe.akka</groupId>
69       <artifactId>akka-slf4j_${scala.version}</artifactId>
70     </dependency>
71
72
73       <!-- Test Dependencies -->
74     <dependency>
75       <groupId>junit</groupId>
76       <artifactId>junit</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.mockito</groupId>
81       <artifactId>mockito-all</artifactId>
82       <scope>test</scope>
83     </dependency>
84
85     <dependency>
86       <groupId>org.slf4j</groupId>
87       <artifactId>slf4j-simple</artifactId>
88       <scope>test</scope>
89     </dependency>
90
91   </dependencies>
92
93   <build>
94     <plugins>
95
96       <plugin>
97         <groupId>org.apache.felix</groupId>
98         <artifactId>maven-bundle-plugin</artifactId>
99         <extensions>true</extensions>
100         <configuration>
101           <instructions>
102             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
103             <Export-package>org.opendaylight.cluster.raft</Export-package>
104             <Import-Package>*</Import-Package>
105             <DynamicImport-Package>*</DynamicImport-Package>
106           </instructions>
107         </configuration>
108       </plugin>
109
110       <plugin>
111         <groupId>org.apache.maven.plugins</groupId>
112         <artifactId>maven-jar-plugin</artifactId>
113         <executions>
114           <execution>
115             <goals>
116               <goal>test-jar</goal>
117             </goals>
118           </execution>
119         </executions>
120       </plugin>
121
122       <plugin>
123         <groupId>org.jacoco</groupId>
124         <artifactId>jacoco-maven-plugin</artifactId>
125         <configuration>
126           <includes>
127             <include>org/opendaylight/controller/cluster/**/*</include>
128           </includes>
129           <excludes>
130               <exclude>org/opendaylight/controller/cluster/raft/protobuff/**/*</exclude>
131               <exclude>org/opendaylight/controller/cluster/example/**/*</exclude>
132           </excludes>
133           <check>false</check>
134         </configuration>
135         <executions>
136           <execution>
137             <id>pre-test</id>
138             <goals>
139               <goal>prepare-agent</goal>
140             </goals>
141           </execution>
142           <execution>
143             <id>post-test</id>
144             <goals>
145               <goal>report</goal>
146             </goals>
147             <phase>test</phase>
148           </execution>
149         </executions>
150       </plugin>
151
152      <plugin>
153         <groupId>org.apache.maven.plugins</groupId>
154         <artifactId>maven-checkstyle-plugin</artifactId>
155         <configuration>
156             <excludes>**/protobuff/**/*,**/target/**/*</excludes>
157         </configuration>
158       </plugin>
159
160     </plugins>
161   </build>
162   <scm>
163     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
164     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
165     <tag>HEAD</tag>
166     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
167   </scm>
168 </project>