Add akka dependencies
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / 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-distributed-datastore</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     <!-- SAL Dependencies -->
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal-core-spi</artifactId>
42     </dependency>
43
44     <!-- AKKA Dependencies -->
45     <dependency>
46       <groupId>org.scala-lang</groupId>
47       <artifactId>scala-library</artifactId>
48     </dependency>
49
50     <!-- Test Dependencies -->
51     <dependency>
52       <groupId>junit</groupId>
53       <artifactId>junit</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.mockito</groupId>
58       <artifactId>mockito-all</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.slf4j</groupId>
63       <artifactId>slf4j-simple</artifactId>
64       <version>${slf4j.version}</version>
65       <scope>test</scope>
66     </dependency>
67   </dependencies>
68
69   <build>
70     <plugins>
71
72       <plugin>
73         <groupId>org.apache.felix</groupId>
74         <artifactId>maven-bundle-plugin</artifactId>
75         <extensions>true</extensions>
76         <configuration>
77           <instructions>
78             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
79             <Export-package></Export-package>
80             <Private-Package></Private-Package>
81           </instructions>
82         </configuration>
83       </plugin>
84
85       <plugin>
86         <groupId>org.apache.maven.plugins</groupId>
87         <artifactId>maven-jar-plugin</artifactId>
88         <executions>
89           <execution>
90             <goals>
91               <goal>test-jar</goal>
92             </goals>
93           </execution>
94         </executions>
95       </plugin>
96       <plugin>
97         <groupId>org.jacoco</groupId>
98         <artifactId>jacoco-maven-plugin</artifactId>
99         <configuration>
100           <includes>
101             <include>org.opendaylight.controller.*</include>
102           </includes>
103           <check>false</check>
104         </configuration>
105         <executions>
106           <execution>
107             <id>pre-test</id>
108             <goals>
109               <goal>prepare-agent</goal>
110             </goals>
111           </execution>
112           <execution>
113             <id>post-test</id>
114             <goals>
115               <goal>report</goal>
116             </goals>
117             <phase>test</phase>
118           </execution>
119         </executions>
120       </plugin>
121     </plugins>
122   </build>
123   <scm>
124     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
125     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
126     <tag>HEAD</tag>
127     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
128   </scm>
129 </project>