Bump versions by x.(y+1).z for next dev cycle
[genius.git] / commons / binding-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016, 2017 Ericsson India Global Services Pvt Ltd. 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   <parent>
11     <groupId>org.opendaylight.mdsal</groupId>
12     <artifactId>binding-parent</artifactId>
13     <version>0.14.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.genius</groupId>
19   <artifactId>binding-parent</artifactId>
20   <version>0.6.0-SNAPSHOT</version>
21   <packaging>pom</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: genius :: ${project.artifactId}</name>
25
26   <properties>
27     <ietf.inet.types.version>2010.09.24.14.0-SNAPSHOT</ietf.inet.types.version>
28     <ietf.yang.types.version>2010.09.24.14.0-SNAPSHOT</ietf.yang.types.version>
29     <ietf.interfaces.version>2014.05.08.14.0-SNAPSHOT</ietf.interfaces.version>
30     <iana.if.type.version>2014.05.08.14.0-SNAPSHOT</iana.if.type.version>
31     <yang.ext.version>2013.09.07.14.0-SNAPSHOT</yang.ext.version>
32     <controller.mdsal.version>1.9.0-SNAPSHOT</controller.mdsal.version>
33     <model.bgp.version>2013.07.15.14.0-SNAPSHOT</model.bgp.version>
34     <openflowplugin.version>0.8.0-SNAPSHOT</openflowplugin.version>
35     <genius.ovsdb.version>1.8.0-SNAPSHOT</genius.ovsdb.version>
36     <genius.infrautils.version>1.5.0-SNAPSHOT</genius.infrautils.version>
37   </properties>
38
39   <dependencyManagement>
40     <dependencies>
41       <dependency>
42         <groupId>org.opendaylight.controller</groupId>
43         <artifactId>mdsal-artifacts</artifactId>
44         <version>${controller.mdsal.version}</version>
45         <type>pom</type>
46         <scope>import</scope>
47       </dependency>
48     </dependencies>
49   </dependencyManagement>
50
51   <dependencies>
52     <dependency>
53       <groupId>org.osgi</groupId>
54       <artifactId>org.osgi.core</artifactId>
55     </dependency>
56
57     <!-- Testing Dependencies -->
58     <dependency>
59       <groupId>junit</groupId>
60       <artifactId>junit</artifactId>
61       <scope>test</scope>
62     </dependency>
63
64     <dependency>
65       <groupId>org.mockito</groupId>
66       <artifactId>mockito-core</artifactId>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70
71   <build>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-checkstyle-plugin</artifactId>
76         <configuration>
77           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
78         </configuration>
79       </plugin>
80       <plugin>
81         <groupId>org.codehaus.mojo</groupId>
82         <artifactId>findbugs-maven-plugin</artifactId>
83         <dependencies>
84           <!-- TODO Remove this when we upgrade to odlparent with a complete fix for ODLPARENT-146 -->
85           <dependency>
86             <groupId>org.opendaylight.odlparent</groupId>
87             <artifactId>findbugs</artifactId>
88             <version>3.1.3</version>
89           </dependency>
90         </dependencies>
91         <configuration>
92           <plugins>
93             <plugin>
94               <groupId>jp.skypencil.findbugs.slf4j</groupId>
95               <artifactId>bug-pattern</artifactId>
96               <version>1.4.0</version>
97             </plugin>
98           </plugins>
99           <failOnError>true</failOnError>
100         </configuration>
101       </plugin>
102     </plugins>
103   </build>
104 </project>