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