Bump to odlparent 2.0.6
[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
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>bundle-parent</artifactId>
14         <version>2.0.6</version>
15         <relativePath/>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <groupId>org.opendaylight.mdsal</groupId>
20     <artifactId>mdsal-binding2-dom-adapter</artifactId>
21     <version>0.11.3-SNAPSHOT</version>
22     <packaging>bundle</packaging>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.opendaylight.mdsal</groupId>
28                 <artifactId>mdsal-artifacts</artifactId>
29                 <version>2.3.3-SNAPSHOT</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33             <dependency>
34                 <groupId>org.opendaylight.yangtools</groupId>
35                 <artifactId>yangtools-artifacts</artifactId>
36                 <version>1.2.3-SNAPSHOT</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42
43     <dependencies>
44         <dependency>
45             <groupId>com.google.guava</groupId>
46             <artifactId>guava</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.javassist</groupId>
50             <artifactId>javassist</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding2-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>mdsal-binding2-util</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-dom-broker</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>mdsal-dom-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal</groupId>
71             <artifactId>mdsal-dom-spi</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.mdsal</groupId>
75             <artifactId>mdsal-binding2-generator-impl</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.mdsal</groupId>
79             <artifactId>mdsal-binding2-dom-codec</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>yang-data-impl</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.yangtools</groupId>
87             <artifactId>yang-model-util</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.yangtools</groupId>
91             <artifactId>yang-test-util</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.osgi</groupId>
95             <artifactId>org.osgi.core</artifactId>
96             <scope>provided</scope>
97         </dependency>
98         <dependency>
99             <groupId>junit</groupId>
100             <artifactId>junit</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.mockito</groupId>
105             <artifactId>mockito-core</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.yangtools</groupId>
110             <artifactId>yang-parser-impl</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.mdsal</groupId>
115             <artifactId>mdsal-binding2-test-model</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.slf4j</groupId>
120             <artifactId>slf4j-simple</artifactId>
121             <scope>test</scope>
122         </dependency>
123     </dependencies>
124
125     <build>
126         <plugins>
127             <plugin>
128                 <groupId>org.apache.maven.plugins</groupId>
129                 <artifactId>maven-jar-plugin</artifactId>
130                 <executions>
131                     <execution>
132                         <goals>
133                             <goal>test-jar</goal>
134                         </goals>
135                     </execution>
136                 </executions>
137             </plugin>
138             <plugin>
139                 <groupId>org.apache.maven.plugins</groupId>
140                 <artifactId>maven-checkstyle-plugin</artifactId>
141                 <configuration>
142                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
143                 </configuration>
144             </plugin>
145         </plugins>
146     </build>
147
148     <scm>
149         <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
150         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
151         <tag>HEAD</tag>
152         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
153     </scm>
154
155     <!--
156       Maven Site Configuration
157
158       The following configuration is necessary for maven-site-plugin to
159       correctly identify the correct deployment path for OpenDaylight Maven
160       sites.
161   -->
162     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
163
164     <distributionManagement>
165         <site>
166             <id>opendaylight-site</id>
167             <url>${nexus.site.url}/${project.artifactId}/</url>
168         </site>
169     </distributionManagement>
170 </project>