Bump yangtools to 2.0.2
[mdsal.git] / dom / mdsal-dom-api / 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
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>3.0.2</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-dom-api</artifactId>
22     <version>2.5.0-SNAPSHOT</version>
23     <packaging>bundle</packaging>
24
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.mdsal</groupId>
29                 <artifactId>mdsal-artifacts</artifactId>
30                 <version>2.5.0-SNAPSHOT</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34             <dependency>
35                 <groupId>org.opendaylight.yangtools</groupId>
36                 <artifactId>yangtools-artifacts</artifactId>
37                 <version>2.0.2</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41         </dependencies>
42     </dependencyManagement>
43
44     <dependencies>
45         <dependency>
46             <groupId>org.opendaylight.mdsal</groupId>
47             <artifactId>mdsal-common-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-data-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-model-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.osgi</groupId>
59             <artifactId>org.osgi.core</artifactId>
60         </dependency>
61
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-data-impl</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.mockito</groupId>
73             <artifactId>mockito-core</artifactId>
74             <scope>test</scope>
75         </dependency>
76     </dependencies>
77     <build>
78         <plugins>
79             <plugin>
80                 <groupId>org.apache.maven.plugins</groupId>
81                 <artifactId>maven-checkstyle-plugin</artifactId>
82                 <configuration>
83                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
84                 </configuration>
85             </plugin>
86         </plugins>
87     </build>
88     <scm>
89         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
90         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
91         <tag>HEAD</tag>
92         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
93     </scm>
94
95     <!--
96       Maven Site Configuration
97
98       The following configuration is necessary for maven-site-plugin to
99       correctly identify the correct deployment path for OpenDaylight Maven
100       sites.
101      -->
102     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
103
104     <distributionManagement>
105         <site>
106             <id>opendaylight-site</id>
107             <url>${nexus.site.url}/${project.artifactId}/</url>
108         </site>
109     </distributionManagement>
110
111 </project>