Bump upstreams
[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>8.0.0-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.opendaylight.yangtools</groupId>
26       <artifactId>concepts</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.yangtools</groupId>
30       <artifactId>util</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-clustering-commons</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>cds-mgmt-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>repackaged-akka</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.scala-lang</groupId>
46       <artifactId>scala-library</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.apache.commons</groupId>
50       <artifactId>commons-lang3</artifactId>
51     </dependency>
52
53     <!-- Test Dependencies -->
54     <dependency>
55       <groupId>com.typesafe.akka</groupId>
56       <artifactId>akka-testkit_2.13</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.awaitility</groupId>
60       <artifactId>awaitility</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.slf4j</groupId>
65       <artifactId>slf4j-simple</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>commons-io</groupId>
70       <artifactId>commons-io</artifactId>
71       <scope>test</scope>
72     </dependency>
73   </dependencies>
74
75   <build>
76     <plugins>
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>org.opendaylight.cluster.raft</Export-package>
85             <DynamicImport-Package>*</DynamicImport-Package>
86           </instructions>
87         </configuration>
88       </plugin>
89       <plugin>
90         <artifactId>maven-jar-plugin</artifactId>
91         <executions>
92           <execution>
93             <goals>
94               <goal>test-jar</goal>
95             </goals>
96           </execution>
97         </executions>
98       </plugin>
99       <plugin>
100         <artifactId>maven-source-plugin</artifactId>
101         <executions>
102           <execution>
103             <goals>
104               <goal>test-jar-no-fork</goal>
105             </goals>
106           </execution>
107         </executions>
108       </plugin>
109     </plugins>
110   </build>
111
112   <scm>
113     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
114     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
115     <tag>HEAD</tag>
116     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
117   </scm>
118 </project>