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