BUG-5280: log a message when tell-based protocol is active
[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.0-SNAPSHOT</version>
8     <relativePath>../../config/config-parent</relativePath>
9   </parent>
10
11   <artifactId>sal-cluster-admin-impl</artifactId>
12   <version>1.5.0-SNAPSHOT</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.0-SNAPSHOT</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>yang-test-util</artifactId>
52     </dependency>
53
54     <!-- Akka -->
55     <dependency>
56       <groupId>com.typesafe.akka</groupId>
57       <artifactId>akka-actor_${scala.version}</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>com.typesafe.akka</groupId>
61       <artifactId>akka-testkit_${scala.version}</artifactId>
62       <scope>test</scope>
63     </dependency>
64
65     <!-- Google -->
66     <dependency>
67       <groupId>com.google.guava</groupId>
68       <artifactId>guava</artifactId>
69     </dependency>
70
71     <!-- Scala -->
72     <dependency>
73       <groupId>org.scala-lang</groupId>
74       <artifactId>scala-library</artifactId>
75     </dependency>
76
77     <!-- OpenDaylight -->
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>config-api</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>sal-binding-api</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>sal-akka-raft</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>sal-distributed-datastore</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.mdsal</groupId>
96       <artifactId>yang-binding</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.yangtools</groupId>
100       <artifactId>yang-common</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.apache.commons</groupId>
104       <artifactId>commons-lang3</artifactId>
105     </dependency>
106
107   </dependencies>
108
109   <build>
110     <plugins>
111       <plugin>
112         <groupId>org.apache.felix</groupId>
113         <artifactId>maven-bundle-plugin</artifactId>
114         <extensions>true</extensions>
115         <configuration>
116           <instructions>
117             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
118             <Export-Package></Export-Package>
119             <Import-Package>
120                 !*snappy;
121                 !org.jboss.*;
122                 !com.jcraft.*;
123                 !*jetty*;
124                 !sun.security.*;
125                 *;
126             </Import-Package>
127           </instructions>
128         </configuration>
129       </plugin>
130       <plugin>
131         <groupId>org.apache.maven.plugins</groupId>
132         <artifactId>maven-checkstyle-plugin</artifactId>
133         <configuration>
134           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
135         </configuration>
136       </plugin>
137       <plugin>
138         <groupId>org.codehaus.mojo</groupId>
139         <artifactId>findbugs-maven-plugin</artifactId>
140         <configuration>
141           <failOnError>true</failOnError>
142         </configuration>
143       </plugin>
144     </plugins>
145   </build>
146
147   <scm>
148     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
149     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
150     <tag>HEAD</tag>
151     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
152   </scm>
153
154   <!--
155       Maven Site Configuration
156
157       The following configuration is necessary for maven-site-plugin to
158       correctly identify the correct deployment path for OpenDaylight Maven
159       sites.
160   -->
161   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
162
163   <distributionManagement>
164     <site>
165       <id>opendaylight-site</id>
166       <url>${nexus.site.url}/${project.artifactId}/</url>
167     </site>
168   </distributionManagement>
169 </project>
170