Release Carbon
[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>config-parent</artifactId>
7     <version>0.6.4-Carbon</version>
8     <relativePath>../../config/config-parent</relativePath>
9   </parent>
10
11   <artifactId>sal-cluster-admin-impl</artifactId>
12   <version>1.5.4-Carbon</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>sal-cluster-admin-api</artifactId>
19     </dependency>
20     <!-- Tests -->
21     <dependency>
22       <groupId>junit</groupId>
23       <artifactId>junit</artifactId>
24       <scope>test</scope>
25     </dependency>
26     <dependency>
27       <groupId>org.mockito</groupId>
28       <artifactId>mockito-core</artifactId>
29       <scope>test</scope>
30     </dependency>
31     <dependency>
32       <groupId>org.slf4j</groupId>
33       <artifactId>slf4j-simple</artifactId>
34       <scope>test</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-akka-raft</artifactId>
39       <type>test-jar</type>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal-distributed-datastore</artifactId>
45       <type>test-jar</type>
46       <version>1.5.4-Carbon</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>yang-test-util</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller.samples</groupId>
55       <artifactId>clustering-it-model</artifactId>
56       <version>1.5.4-Carbon</version>
57       <scope>test</scope>
58     </dependency>
59
60     <!-- Akka -->
61     <dependency>
62       <groupId>com.typesafe.akka</groupId>
63       <artifactId>akka-actor_${scala.version}</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>com.typesafe.akka</groupId>
67       <artifactId>akka-testkit_${scala.version}</artifactId>
68       <scope>test</scope>
69     </dependency>
70
71     <!-- Google -->
72     <dependency>
73       <groupId>com.google.guava</groupId>
74       <artifactId>guava</artifactId>
75     </dependency>
76
77     <!-- Scala -->
78     <dependency>
79       <groupId>org.scala-lang</groupId>
80       <artifactId>scala-library</artifactId>
81     </dependency>
82
83     <!-- OpenDaylight -->
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>config-api</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal-binding-api</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>sal-akka-raft</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>sal-distributed-datastore</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.mdsal</groupId>
102       <artifactId>yang-binding</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.yangtools</groupId>
106       <artifactId>yang-common</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>org.apache.commons</groupId>
110       <artifactId>commons-lang3</artifactId>
111     </dependency>
112
113   </dependencies>
114
115   <build>
116     <plugins>
117       <plugin>
118         <groupId>org.apache.felix</groupId>
119         <artifactId>maven-bundle-plugin</artifactId>
120         <extensions>true</extensions>
121         <configuration>
122           <instructions>
123             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
124             <Export-Package></Export-Package>
125             <Import-Package>
126                 !*snappy;
127                 !org.jboss.*;
128                 !com.jcraft.*;
129                 !*jetty*;
130                 !sun.security.*;
131                 *;
132             </Import-Package>
133           </instructions>
134         </configuration>
135       </plugin>
136       <plugin>
137         <groupId>org.apache.maven.plugins</groupId>
138         <artifactId>maven-checkstyle-plugin</artifactId>
139         <configuration>
140           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
141         </configuration>
142       </plugin>
143       <plugin>
144         <groupId>org.codehaus.mojo</groupId>
145         <artifactId>findbugs-maven-plugin</artifactId>
146         <configuration>
147           <failOnError>true</failOnError>
148         </configuration>
149       </plugin>
150     </plugins>
151   </build>
152
153   <scm>
154     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
155     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
156     <tag>HEAD</tag>
157     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
158   </scm>
159
160   <!--
161       Maven Site Configuration
162
163       The following configuration is necessary for maven-site-plugin to
164       correctly identify the correct deployment path for OpenDaylight Maven
165       sites.
166   -->
167   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
168
169   <distributionManagement>
170     <site>
171       <id>opendaylight-site</id>
172       <url>${nexus.site.url}/${project.artifactId}/</url>
173     </site>
174   </distributionManagement>
175 </project>
176