Release mdsal
[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.15</version>
15         <relativePath>../../dom/dom-parent</relativePath>
16     </parent>
17
18     <artifactId>mdsal-binding2-dom-adapter</artifactId>
19     <version>0.15.15</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         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.yangtools</groupId>
78             <artifactId>yang-parser-impl</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.mdsal</groupId>
83             <artifactId>mdsal-binding2-test-model</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.mdsal</groupId>
87             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
88             <scope>test</scope>
89         </dependency>
90     </dependencies>
91
92     <build>
93         <plugins>
94             <plugin>
95                 <groupId>org.apache.maven.plugins</groupId>
96                 <artifactId>maven-jar-plugin</artifactId>
97                 <executions>
98                     <execution>
99                         <goals>
100                             <goal>test-jar</goal>
101                         </goals>
102                     </execution>
103                 </executions>
104             </plugin>
105             <plugin>
106                 <groupId>org.apache.maven.plugins</groupId>
107                 <artifactId>maven-checkstyle-plugin</artifactId>
108                 <configuration>
109                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
110                 </configuration>
111             </plugin>
112         </plugins>
113     </build>
114
115     <scm>
116         <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
117         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
118         <tag>HEAD</tag>
119         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
120     </scm>
121 </project>