a7baa49414f73e2551c2ca8f381c2bace793cee2
[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.odlparent</groupId>
6     <artifactId>bundle-parent</artifactId>
7     <version>3.0.2</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-akka-raft</artifactId>
13   <version>1.8.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.controller</groupId>
20         <artifactId>mdsal-artifacts</artifactId>
21         <version>1.8.0-SNAPSHOT</version>
22         <type>pom</type>
23         <scope>import</scope>
24       </dependency>
25     </dependencies>
26   </dependencyManagement>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal-clustering-commons</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.google.guava</groupId>
35       <artifactId>guava</artifactId>
36     </dependency>
37
38     <dependency>
39       <groupId>com.typesafe.akka</groupId>
40       <artifactId>akka-actor_2.12</artifactId>
41     </dependency>
42
43     <dependency>
44       <groupId>com.typesafe.akka</groupId>
45       <artifactId>akka-cluster_2.12</artifactId>
46     </dependency>
47
48     <dependency>
49       <groupId>com.typesafe.akka</groupId>
50       <artifactId>akka-persistence_2.12</artifactId>
51     </dependency>
52
53     <dependency>
54       <groupId>com.typesafe.akka</groupId>
55       <artifactId>akka-remote_2.12</artifactId>
56     </dependency>
57
58     <dependency>
59       <groupId>com.typesafe.akka</groupId>
60       <artifactId>akka-testkit_2.12</artifactId>
61       <scope>test</scope>
62     </dependency>
63
64     <dependency>
65       <groupId>org.osgi</groupId>
66       <artifactId>org.osgi.core</artifactId>
67     </dependency>
68
69     <dependency>
70       <groupId>org.scala-lang</groupId>
71       <artifactId>scala-library</artifactId>
72     </dependency>
73
74     <dependency>
75       <groupId>commons-io</groupId>
76       <artifactId>commons-io</artifactId>
77     </dependency>
78
79     <dependency>
80       <groupId>org.apache.commons</groupId>
81       <artifactId>commons-lang3</artifactId>
82     </dependency>
83
84     <dependency>
85       <groupId>com.typesafe.akka</groupId>
86       <artifactId>akka-slf4j_2.12</artifactId>
87     </dependency>
88
89       <!-- Test Dependencies -->
90     <dependency>
91       <groupId>junit</groupId>
92       <artifactId>junit</artifactId>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.mockito</groupId>
97       <artifactId>mockito-core</artifactId>
98       <scope>test</scope>
99     </dependency>
100
101     <dependency>
102       <groupId>org.slf4j</groupId>
103       <artifactId>slf4j-simple</artifactId>
104       <scope>test</scope>
105     </dependency>
106
107   </dependencies>
108
109   <build>
110     <plugins>
111
112       <plugin>
113         <groupId>org.apache.felix</groupId>
114         <artifactId>maven-bundle-plugin</artifactId>
115         <extensions>true</extensions>
116         <configuration>
117           <instructions>
118             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
119             <Export-package>org.opendaylight.cluster.raft</Export-package>
120             <DynamicImport-Package>*</DynamicImport-Package>
121           </instructions>
122         </configuration>
123       </plugin>
124
125       <plugin>
126         <groupId>org.apache.maven.plugins</groupId>
127         <artifactId>maven-jar-plugin</artifactId>
128         <executions>
129           <execution>
130             <goals>
131               <goal>test-jar</goal>
132             </goals>
133           </execution>
134         </executions>
135       </plugin>
136
137       <plugin>
138         <groupId>org.apache.maven.plugins</groupId>
139         <artifactId>maven-checkstyle-plugin</artifactId>
140         <configuration>
141           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
142         </configuration>
143       </plugin>
144       <plugin>
145         <groupId>org.codehaus.mojo</groupId>
146         <artifactId>findbugs-maven-plugin</artifactId>
147         <configuration>
148           <failOnError>true</failOnError>
149         </configuration>
150       </plugin>
151     </plugins>
152   </build>
153
154   <scm>
155     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
156     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
157     <tag>HEAD</tag>
158     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
159   </scm>
160
161 </project>