Bump versions by x.(y+1).z for next dev cycle
[mdsal.git] / dom / mdsal-dom-spi / 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     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>3.1.3</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.mdsal</groupId>
20     <artifactId>mdsal-dom-spi</artifactId>
21     <version>2.6.0-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.6.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.10</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42
43     <dependencies>
44         <dependency>
45             <groupId>org.opendaylight.mdsal</groupId>
46             <artifactId>mdsal-dom-api</artifactId>
47         </dependency>
48
49         <!-- Test Dependencies -->
50         <dependency>
51             <groupId>junit</groupId>
52             <artifactId>junit</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.slf4j</groupId>
57             <artifactId>slf4j-simple</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>mockito-configuration</artifactId>
63             <scope>test</scope>
64         </dependency>
65     </dependencies>
66
67     <build>
68         <plugins>
69             <plugin>
70                 <groupId>org.apache.maven.plugins</groupId>
71                 <artifactId>maven-checkstyle-plugin</artifactId>
72                 <configuration>
73                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
74                 </configuration>
75             </plugin>
76         </plugins>
77     </build>
78
79     <scm>
80         <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
81         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
82         <tag>HEAD</tag>
83         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
84     </scm>
85 </project>