Create a parent pom for md-sal sub-projects
[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.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-client</artifactId>
14     <version>1.4.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.controller</groupId>
20             <artifactId>cds-access-api</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>com.typesafe.akka</groupId>
24             <artifactId>akka-actor_2.12</artifactId>
25         </dependency>
26
27         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>concepts</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-data-api</artifactId>
34         </dependency>
35
36         <dependency>
37             <groupId>org.mockito</groupId>
38             <artifactId>mockito-core</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.typesafe.akka</groupId>
42             <artifactId>akka-testkit_2.12</artifactId>
43             <scope>test</scope>
44         </dependency>
45         <dependency>
46            <groupId>com.google.guava</groupId>
47            <artifactId>guava-testlib</artifactId>
48         </dependency>
49         <dependency>
50           <groupId>org.opendaylight.controller</groupId>
51           <artifactId>sal-clustering-commons</artifactId>
52           <type>test-jar</type>
53         </dependency>
54     </dependencies>
55
56     <build>
57       <plugins>
58         <plugin>
59           <groupId>org.apache.maven.plugins</groupId>
60           <artifactId>maven-checkstyle-plugin</artifactId>
61           <configuration>
62             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
63           </configuration>
64         </plugin>
65         <plugin>
66           <groupId>org.codehaus.mojo</groupId>
67           <artifactId>findbugs-maven-plugin</artifactId>
68           <configuration>
69             <failOnError>true</failOnError>
70           </configuration>
71         </plugin>
72         <plugin>
73           <groupId>org.apache.maven.plugins</groupId>
74           <artifactId>maven-jar-plugin</artifactId>
75           <executions>
76             <execution>
77               <goals>
78                 <goal>test-jar</goal>
79               </goals>
80             </execution>
81           </executions>
82         </plugin>
83       </plugins>
84     </build>
85
86     <scm>
87         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
88         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
89         <tag>HEAD</tag>
90         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
91     </scm>
92 </project>