Bump versions by x.(y+1).z for next dev cycle
[mdsal.git] / entityownership / mdsal-eos-binding-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. 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     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>bundle-parent</artifactId>
14         <version>3.1.3</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.mdsal</groupId>
19     <artifactId>mdsal-eos-binding-api</artifactId>
20     <version>2.6.0-SNAPSHOT</version>
21     <packaging>bundle</packaging>
22
23     <dependencyManagement>
24         <dependencies>
25             <dependency>
26                 <groupId>org.opendaylight.mdsal</groupId>
27                 <artifactId>mdsal-artifacts</artifactId>
28                 <version>2.6.0-SNAPSHOT</version>
29                 <type>pom</type>
30                 <scope>import</scope>
31             </dependency>
32             <dependency>
33                 <groupId>org.opendaylight.yangtools</groupId>
34                 <artifactId>yangtools-artifacts</artifactId>
35                 <version>2.0.10</version>
36                 <type>pom</type>
37                 <scope>import</scope>
38             </dependency>
39         </dependencies>
40     </dependencyManagement>
41
42     <dependencies>
43         <dependency>
44             <groupId>com.google.guava</groupId>
45             <artifactId>guava</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>mdsal-eos-common-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>mdsal-eos-common-spi</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal.model</groupId>
57             <artifactId>general-entity</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>concepts</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal</groupId>
65             <artifactId>yang-binding</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-common</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.osgi</groupId>
73             <artifactId>org.osgi.core</artifactId>
74             <scope>provided</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.apache.commons</groupId>
78             <artifactId>commons-lang3</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>junit</groupId>
83             <artifactId>junit</artifactId>
84             <scope>test</scope>
85         </dependency>
86     </dependencies>
87     <build>
88         <plugins>
89             <plugin>
90                 <groupId>org.apache.maven.plugins</groupId>
91                 <artifactId>maven-checkstyle-plugin</artifactId>
92                 <configuration>
93                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
94                 </configuration>
95             </plugin>
96         </plugins>
97     </build>
98     <scm>
99         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
100         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
101         <tag>HEAD</tag>
102         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
103     </scm>
104 </project>