306e7561a567c488017a62a3928708599b7970c7
[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>9.0.3-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-akka-raft</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>com.github.spotbugs</groupId>
17       <artifactId>spotbugs-annotations</artifactId>
18       <optional>true</optional>
19     </dependency>
20     <dependency>
21       <groupId>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.eclipse.jdt</groupId>
26       <artifactId>org.eclipse.jdt.annotation</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.yangtools</groupId>
30       <artifactId>concepts</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.yangtools</groupId>
34       <artifactId>util</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-clustering-commons</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>cds-mgmt-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>repackaged-akka</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.scala-lang</groupId>
50       <artifactId>scala-library</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.apache.commons</groupId>
54       <artifactId>commons-lang3</artifactId>
55     </dependency>
56
57     <!-- Test Dependencies -->
58     <dependency>
59       <groupId>com.typesafe.akka</groupId>
60       <artifactId>akka-testkit_2.13</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.awaitility</groupId>
64       <artifactId>awaitility</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.slf4j</groupId>
69       <artifactId>slf4j-simple</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>commons-io</groupId>
74       <artifactId>commons-io</artifactId>
75       <scope>test</scope>
76     </dependency>
77   </dependencies>
78
79   <build>
80     <plugins>
81       <plugin>
82         <groupId>org.apache.felix</groupId>
83         <artifactId>maven-bundle-plugin</artifactId>
84         <extensions>true</extensions>
85         <configuration>
86           <instructions>
87             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
88             <Export-package>org.opendaylight.cluster.raft</Export-package>
89             <DynamicImport-Package>*</DynamicImport-Package>
90           </instructions>
91         </configuration>
92       </plugin>
93       <plugin>
94         <artifactId>maven-jar-plugin</artifactId>
95         <executions>
96           <execution>
97             <goals>
98               <goal>test-jar</goal>
99             </goals>
100           </execution>
101         </executions>
102       </plugin>
103       <plugin>
104         <artifactId>maven-source-plugin</artifactId>
105         <executions>
106           <execution>
107             <goals>
108               <goal>test-jar-no-fork</goal>
109             </goals>
110           </execution>
111         </executions>
112       </plugin>
113     </plugins>
114   </build>
115
116   <scm>
117     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
118     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
119     <tag>HEAD</tag>
120     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
121   </scm>
122 </project>