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