Merge "Bug 1686 - Rework TopologyManager to use transaction chaining in order to...
[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>org.opendaylight.controller</groupId>
15       <artifactId>sal-clustering-commons</artifactId>
16       <version>1.1-SNAPSHOT</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     <dependency>
59       <groupId>commons-io</groupId>
60       <artifactId>commons-io</artifactId>
61     </dependency>
62
63     <dependency>
64       <groupId>com.typesafe.akka</groupId>
65       <artifactId>akka-slf4j_${scala.version}</artifactId>
66     </dependency>
67
68
69       <!-- Test Dependencies -->
70     <dependency>
71       <groupId>junit</groupId>
72       <artifactId>junit</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.mockito</groupId>
77       <artifactId>mockito-all</artifactId>
78       <scope>test</scope>
79     </dependency>
80
81     <dependency>
82       <groupId>org.slf4j</groupId>
83       <artifactId>slf4j-simple</artifactId>
84       <version>${slf4j.version}</version>
85       <scope>test</scope>
86     </dependency>
87
88   </dependencies>
89
90   <build>
91     <plugins>
92
93       <plugin>
94         <groupId>org.apache.felix</groupId>
95         <artifactId>maven-bundle-plugin</artifactId>
96         <extensions>true</extensions>
97         <configuration>
98           <instructions>
99             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
100             <Export-package>org.opendaylight.cluster.raft</Export-package>
101             <Import-Package>*</Import-Package>
102           </instructions>
103         </configuration>
104       </plugin>
105
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-jar-plugin</artifactId>
109         <executions>
110           <execution>
111             <goals>
112               <goal>test-jar</goal>
113             </goals>
114           </execution>
115         </executions>
116       </plugin>
117
118       <plugin>
119         <groupId>org.jacoco</groupId>
120         <artifactId>jacoco-maven-plugin</artifactId>
121         <configuration>
122           <includes>
123             <include>org/opendaylight/controller/cluster/**/*</include>
124           </includes>
125           <excludes>
126               <exclude>org/opendaylight/controller/cluster/raft/protobuff/**/*</exclude>
127               <exclude>org/opendaylight/controller/cluster/example/**/*</exclude>
128           </excludes>
129           <check>false</check>
130         </configuration>
131         <executions>
132           <execution>
133             <id>pre-test</id>
134             <goals>
135               <goal>prepare-agent</goal>
136             </goals>
137           </execution>
138           <execution>
139             <id>post-test</id>
140             <goals>
141               <goal>report</goal>
142             </goals>
143             <phase>test</phase>
144           </execution>
145         </executions>
146       </plugin>
147
148      <plugin>
149         <groupId>org.apache.maven.plugins</groupId>
150         <artifactId>maven-checkstyle-plugin</artifactId>
151         <configuration>
152             <excludes>**/protobuff/**/*</excludes>
153         </configuration>
154       </plugin>
155
156     </plugins>
157   </build>
158   <scm>
159     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
160     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
161     <tag>HEAD</tag>
162     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
163   </scm>
164 </project>