Use dom-parent internally
[mdsal.git] / binding2 / mdsal-binding2-dom-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9 <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">
10     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.mdsal</groupId>
13         <artifactId>dom-parent</artifactId>
14         <version>3.0.1-SNAPSHOT</version>
15         <relativePath>../../dom/dom-parent</relativePath>
16     </parent>
17
18     <artifactId>mdsal-binding2-dom-adapter</artifactId>
19     <version>0.15.1-SNAPSHOT</version>
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>org.javassist</groupId>
29             <artifactId>javassist</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.mdsal</groupId>
33             <artifactId>mdsal-binding2-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.mdsal</groupId>
37             <artifactId>mdsal-binding2-util</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-dom-broker</artifactId>
42             <scope>test</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.mdsal</groupId>
46             <artifactId>mdsal-dom-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-dom-spi</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding2-generator-impl</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>mdsal-binding2-dom-codec</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>yang-data-impl</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>yang-model-util</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>yang-test-util</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.osgi</groupId>
74             <artifactId>org.osgi.core</artifactId>
75             <scope>provided</scope>
76         </dependency>
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.mockito</groupId>
84             <artifactId>mockito-core</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.yangtools</groupId>
89             <artifactId>yang-parser-impl</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.mdsal</groupId>
94             <artifactId>mdsal-binding2-test-model</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal</groupId>
99             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.slf4j</groupId>
104             <artifactId>slf4j-simple</artifactId>
105             <scope>test</scope>
106         </dependency>
107     </dependencies>
108
109     <build>
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-jar-plugin</artifactId>
114                 <executions>
115                     <execution>
116                         <goals>
117                             <goal>test-jar</goal>
118                         </goals>
119                     </execution>
120                 </executions>
121             </plugin>
122             <plugin>
123                 <groupId>org.apache.maven.plugins</groupId>
124                 <artifactId>maven-checkstyle-plugin</artifactId>
125                 <configuration>
126                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
127                 </configuration>
128             </plugin>
129         </plugins>
130     </build>
131
132     <scm>
133         <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
134         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
135         <tag>HEAD</tag>
136         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
137     </scm>
138 </project>