61c3cc53259f46ac0472a6c29e332a2f40e9b3fb
[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>mdsal-parent</artifactId>
7     <version>1.9.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-akka-raft</artifactId>
13   <version>1.9.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>sal-clustering-commons</artifactId>
20     </dependency>
21
22     <dependency>
23       <groupId>com.typesafe.akka</groupId>
24       <artifactId>akka-actor_2.12</artifactId>
25     </dependency>
26
27     <dependency>
28       <groupId>com.typesafe.akka</groupId>
29       <artifactId>akka-cluster_2.12</artifactId>
30     </dependency>
31
32     <dependency>
33       <groupId>com.typesafe.akka</groupId>
34       <artifactId>akka-persistence_2.12</artifactId>
35     </dependency>
36
37     <dependency>
38       <groupId>com.typesafe.akka</groupId>
39       <artifactId>akka-remote_2.12</artifactId>
40     </dependency>
41
42     <dependency>
43       <groupId>com.typesafe.akka</groupId>
44       <artifactId>akka-testkit_2.12</artifactId>
45       <scope>test</scope>
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>org.apache.commons</groupId>
65       <artifactId>commons-lang3</artifactId>
66     </dependency>
67
68     <dependency>
69       <groupId>com.typesafe.akka</groupId>
70       <artifactId>akka-slf4j_2.12</artifactId>
71     </dependency>
72
73     <!-- Test Dependencies -->
74     <dependency>
75       <groupId>org.mockito</groupId>
76       <artifactId>mockito-core</artifactId>
77       <scope>test</scope>
78     </dependency>
79
80     <dependency>
81       <groupId>org.slf4j</groupId>
82       <artifactId>slf4j-simple</artifactId>
83       <scope>test</scope>
84     </dependency>
85   </dependencies>
86
87   <build>
88     <plugins>
89
90       <plugin>
91         <groupId>org.apache.felix</groupId>
92         <artifactId>maven-bundle-plugin</artifactId>
93         <extensions>true</extensions>
94         <configuration>
95           <instructions>
96             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
97             <Export-package>org.opendaylight.cluster.raft</Export-package>
98             <DynamicImport-Package>*</DynamicImport-Package>
99           </instructions>
100         </configuration>
101       </plugin>
102
103       <plugin>
104         <groupId>org.apache.maven.plugins</groupId>
105         <artifactId>maven-jar-plugin</artifactId>
106         <executions>
107           <execution>
108             <goals>
109               <goal>test-jar</goal>
110             </goals>
111           </execution>
112         </executions>
113       </plugin>
114     </plugins>
115   </build>
116
117   <scm>
118     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
119     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
120     <tag>HEAD</tag>
121     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
122   </scm>
123
124 </project>