bcb3eb13e234ee47b4d97c86fe9a8017a89733f1
[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.mdsal</groupId>
6     <artifactId>binding-parent</artifactId>
7     <version>0.12.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-cluster-admin-impl</artifactId>
13   <version>1.7.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.7.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-cluster-admin-api</artifactId>
32     </dependency>
33     <!-- Tests -->
34     <dependency>
35       <groupId>junit</groupId>
36       <artifactId>junit</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.mockito</groupId>
41       <artifactId>mockito-core</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.slf4j</groupId>
46       <artifactId>slf4j-simple</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal-akka-raft</artifactId>
52       <type>test-jar</type>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-distributed-datastore</artifactId>
58       <type>test-jar</type>
59       <version>1.7.0-SNAPSHOT</version>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>yang-test-util</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller.samples</groupId>
68       <artifactId>clustering-it-model</artifactId>
69       <version>1.7.0-SNAPSHOT</version>
70       <scope>test</scope>
71     </dependency>
72
73     <!-- Akka -->
74     <dependency>
75       <groupId>com.typesafe.akka</groupId>
76       <artifactId>akka-actor_${scala.version}</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>com.typesafe.akka</groupId>
80       <artifactId>akka-testkit_${scala.version}</artifactId>
81       <scope>test</scope>
82     </dependency>
83
84     <!-- Google -->
85     <dependency>
86       <groupId>com.google.guava</groupId>
87       <artifactId>guava</artifactId>
88     </dependency>
89
90     <!-- Scala -->
91     <dependency>
92       <groupId>org.scala-lang</groupId>
93       <artifactId>scala-library</artifactId>
94     </dependency>
95
96     <!-- OpenDaylight -->
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>sal-binding-api</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller</groupId>
103       <artifactId>sal-akka-raft</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>sal-distributed-datastore</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.mdsal</groupId>
111       <artifactId>yang-binding</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.yangtools</groupId>
115       <artifactId>yang-common</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.apache.commons</groupId>
119       <artifactId>commons-lang3</artifactId>
120     </dependency>
121
122   </dependencies>
123
124   <build>
125     <plugins>
126       <plugin>
127         <groupId>org.apache.felix</groupId>
128         <artifactId>maven-bundle-plugin</artifactId>
129         <extensions>true</extensions>
130         <configuration>
131           <instructions>
132             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
133             <Export-Package></Export-Package>
134           </instructions>
135         </configuration>
136       </plugin>
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>
162