Enable checkstyle in the mdsal-parent pom
[controller.git] / opendaylight / md-sal / sal-cluster-admin-impl / 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.8.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-cluster-admin-impl</artifactId>
13   <version>1.8.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>sal-cluster-admin-api</artifactId>
20     </dependency>
21     <!-- Tests -->
22     <dependency>
23       <groupId>org.mockito</groupId>
24       <artifactId>mockito-core</artifactId>
25       <scope>test</scope>
26     </dependency>
27     <dependency>
28       <groupId>org.slf4j</groupId>
29       <artifactId>slf4j-simple</artifactId>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-akka-raft</artifactId>
35       <type>test-jar</type>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-distributed-datastore</artifactId>
41       <type>test-jar</type>
42       <version>1.8.0-SNAPSHOT</version>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>yang-test-util</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller.samples</groupId>
51       <artifactId>clustering-it-model</artifactId>
52       <version>1.8.0-SNAPSHOT</version>
53       <scope>test</scope>
54     </dependency>
55
56     <!-- Akka -->
57     <dependency>
58       <groupId>com.typesafe.akka</groupId>
59       <artifactId>akka-actor_2.12</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>com.typesafe.akka</groupId>
63       <artifactId>akka-testkit_2.12</artifactId>
64       <scope>test</scope>
65     </dependency>
66
67     <!-- Scala -->
68     <dependency>
69       <groupId>org.scala-lang</groupId>
70       <artifactId>scala-library</artifactId>
71     </dependency>
72
73     <!-- OpenDaylight -->
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>sal-binding-api</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>sal-akka-raft</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>sal-distributed-datastore</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.mdsal</groupId>
88       <artifactId>yang-binding</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.yangtools</groupId>
92       <artifactId>yang-common</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.apache.commons</groupId>
96       <artifactId>commons-lang3</artifactId>
97     </dependency>
98
99   </dependencies>
100
101   <build>
102     <plugins>
103       <plugin>
104         <groupId>org.apache.felix</groupId>
105         <artifactId>maven-bundle-plugin</artifactId>
106         <extensions>true</extensions>
107         <configuration>
108           <instructions>
109             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
110             <Export-Package></Export-Package>
111           </instructions>
112         </configuration>
113       </plugin>
114       <plugin>
115         <groupId>org.codehaus.mojo</groupId>
116         <artifactId>findbugs-maven-plugin</artifactId>
117         <configuration>
118           <failOnError>true</failOnError>
119         </configuration>
120       </plugin>
121     </plugins>
122   </build>
123
124   <scm>
125     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
126     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
127     <tag>HEAD</tag>
128     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
129   </scm>
130
131 </project>
132