Fix checkstyle violations in messagebus
[controller.git] / opendaylight / md-sal / cds-access-api / 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
5     <parent>
6         <groupId>org.opendaylight.controller</groupId>
7         <artifactId>mdsal-parent</artifactId>
8         <version>1.8.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>cds-access-api</artifactId>
14     <version>1.4.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <dependencies>
18         <dependency>
19             <groupId>com.typesafe.akka</groupId>
20             <artifactId>akka-actor_2.12</artifactId>
21         </dependency>
22
23         <dependency>
24             <groupId>org.opendaylight.yangtools</groupId>
25             <artifactId>concepts</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>yang-data-api</artifactId>
30         </dependency>
31
32         <!-- Needed for serialization of yang-data-api objects -->
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-clustering-commons</artifactId>
36         </dependency>
37
38         <!-- Testing dependencies -->
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>mockito-configuration</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>com.typesafe.akka</groupId>
45             <artifactId>akka-testkit_2.12</artifactId>
46             <scope>test</scope>
47         </dependency>
48     </dependencies>
49
50     <build>
51       <plugins>
52         <plugin>
53           <groupId>org.apache.maven.plugins</groupId>
54           <artifactId>maven-checkstyle-plugin</artifactId>
55           <configuration>
56             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
57           </configuration>
58         </plugin>
59         <plugin>
60           <groupId>org.codehaus.mojo</groupId>
61           <artifactId>findbugs-maven-plugin</artifactId>
62           <configuration>
63             <failOnError>true</failOnError>
64           </configuration>
65         </plugin>
66       </plugins>
67     </build>
68
69     <scm>
70         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
71         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
72         <tag>HEAD</tag>
73         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
74     </scm>
75 </project>