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