Use dom-parent internally
[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>3.0.1-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         <dependency>
41             <groupId>org.opendaylight.mdsal</groupId>
42             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
43             <scope>test</scope>
44         </dependency>
45
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>util</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.yangtools</groupId>
52             <artifactId>yang-data-impl</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>yang-parser-impl</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>yang-model-api</artifactId>
61         </dependency>
62
63         <dependency>
64             <groupId>junit</groupId>
65             <artifactId>junit</artifactId>
66         </dependency>
67
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>mockito-configuration</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>yang-test-util</artifactId>
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         </plugins>
89     </build>
90     <scm>
91         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
92         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
93         <tag>HEAD</tag>
94         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
95     </scm>
96 </project>