23e6b6a8773c1e55979d19ad55a02265bcbc632d
[controller.git] / opendaylight / md-sal / cds-dom-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.odlparent</groupId>
7         <artifactId>bundle-parent</artifactId>
8         <version>3.0.2</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>cds-dom-api</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>2.0.1</version>
23                 <type>pom</type>
24                 <scope>import</scope>
25             </dependency>
26             <dependency>
27                 <groupId>org.opendaylight.mdsal</groupId>
28                 <artifactId>mdsal-artifacts</artifactId>
29                 <version>2.4.0-SNAPSHOT</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33         </dependencies>
34     </dependencyManagement>
35
36     <dependencies>
37         <dependency>
38             <groupId>com.google.guava</groupId>
39             <artifactId>guava</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>com.typesafe.akka</groupId>
43             <artifactId>akka-actor_2.12</artifactId>
44         </dependency>
45
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>concepts</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-dom-api</artifactId>
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       </plugins>
73     </build>
74
75     <scm>
76         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
77         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
78         <tag>HEAD</tag>
79         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
80     </scm>
81 </project>