72aa9408b0690f81e085f35e5945cbb034e97ff4
[controller.git] / opendaylight / md-sal / cds-access-client / 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.odlparent</groupId>
7         <artifactId>bundle-parent</artifactId>
8         <version>2.0.5</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>cds-access-client</artifactId>
14     <version>1.3.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <dependencyManagement>
18         <dependencies>
19             <dependency>
20                 <groupId>org.opendaylight.yangtools</groupId>
21                 <artifactId>yangtools-artifacts</artifactId>
22                 <version>1.2.0</version>
23                 <type>pom</type>
24                 <scope>import</scope>
25             </dependency>
26             <dependency>
27                 <groupId>org.opendaylight.controller</groupId>
28                 <artifactId>mdsal-artifacts</artifactId>
29                 <version>1.7.0-SNAPSHOT</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33         </dependencies>
34     </dependencyManagement>
35
36     <dependencies>
37         <dependency>
38             <groupId>org.opendaylight.controller</groupId>
39             <artifactId>cds-access-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>com.google.guava</groupId>
43             <artifactId>guava</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>com.typesafe.akka</groupId>
47             <artifactId>akka-actor_${scala.version}</artifactId>
48         </dependency>
49
50         <dependency>
51             <groupId>org.opendaylight.yangtools</groupId>
52             <artifactId>concepts</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>yang-data-api</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>org.mockito</groupId>
61             <artifactId>mockito-core</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>com.typesafe.akka</groupId>
65             <artifactId>akka-testkit_${scala.version}</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69            <groupId>com.google.guava</groupId>
70            <artifactId>guava-testlib</artifactId>
71         </dependency>
72         <dependency>
73           <groupId>org.opendaylight.controller</groupId>
74           <artifactId>sal-clustering-commons</artifactId>
75           <type>test-jar</type>
76         </dependency>
77     </dependencies>
78
79     <build>
80       <plugins>
81         <plugin>
82           <groupId>org.apache.maven.plugins</groupId>
83           <artifactId>maven-checkstyle-plugin</artifactId>
84           <configuration>
85             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
86           </configuration>
87         </plugin>
88         <plugin>
89           <groupId>org.codehaus.mojo</groupId>
90           <artifactId>findbugs-maven-plugin</artifactId>
91           <configuration>
92             <failOnError>true</failOnError>
93           </configuration>
94         </plugin>
95         <plugin>
96           <groupId>org.apache.maven.plugins</groupId>
97           <artifactId>maven-jar-plugin</artifactId>
98           <executions>
99             <execution>
100               <goals>
101                 <goal>test-jar</goal>
102               </goals>
103             </execution>
104           </executions>
105         </plugin>
106       </plugins>
107     </build>
108
109     <scm>
110         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
111         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
112         <tag>HEAD</tag>
113         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
114     </scm>
115 </project>