13ffca3a295e1e262c230e8e6c6dff0aa99572b8
[mdsal.git] / dom / mdsal-dom-broker / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.mdsal</groupId>
14         <artifactId>dom-parent</artifactId>
15         <version>4.0.13-SNAPSHOT</version>
16         <relativePath>../dom-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-dom-broker</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>com.google.guava</groupId>
25             <artifactId>guava</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>com.lmax</groupId>
29             <artifactId>disruptor</artifactId>
30         </dependency>
31
32         <dependency>
33             <groupId>org.opendaylight.mdsal</groupId>
34             <artifactId>mdsal-dom-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.mdsal</groupId>
38             <artifactId>mdsal-dom-spi</artifactId>
39         </dependency>
40
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>util</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-data-impl</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-parser-impl</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-model-api</artifactId>
56         </dependency>
57
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>mockito-configuration</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.mdsal</groupId>
64             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-test-util</artifactId>
70         </dependency>
71     </dependencies>
72
73     <build>
74         <plugins>
75             <plugin>
76                 <groupId>org.apache.maven.plugins</groupId>
77                 <artifactId>maven-checkstyle-plugin</artifactId>
78                 <configuration>
79                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
80                 </configuration>
81             </plugin>
82             <plugin>
83                 <groupId>com.github.spotbugs</groupId>
84                 <artifactId>spotbugs-maven-plugin</artifactId>
85                 <configuration>
86                     <failOnError>true</failOnError>
87                 </configuration>
88             </plugin>
89         </plugins>
90     </build>
91     <scm>
92         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
93         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
94         <tag>HEAD</tag>
95         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
96     </scm>
97 </project>