Bump versions by x.(y+1).z for next dev cycle
[netvirt.git] / commons / binding-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015, 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"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12   <parent>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.13.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.netvirt</groupId>
21   <artifactId>binding-parent</artifactId>
22   <name>ODL :: netvirt :: ${project.artifactId}</name>
23   <version>0.7.0-SNAPSHOT</version>
24   <packaging>pom</packaging>
25
26   <properties>
27     <controller.mdsal.version>1.8.0-SNAPSHOT</controller.mdsal.version>
28     <genius.version>0.5.0-SNAPSHOT</genius.version>
29     <infrautils.version>1.4.0-SNAPSHOT</infrautils.version>
30     <model.bgp.version>2013.07.15.13.0-SNAPSHOT</model.bgp.version>
31     <neutron.version>0.11.0-SNAPSHOT</neutron.version>
32     <openflowplugin.version>0.7.0-SNAPSHOT</openflowplugin.version>
33     <ovsdb.version>1.7.0-SNAPSHOT</ovsdb.version>
34   </properties>
35
36   <dependencyManagement>
37     <dependencies>
38       <dependency>
39         <groupId>org.opendaylight.controller</groupId>
40         <artifactId>mdsal-artifacts</artifactId>
41         <version>${controller.mdsal.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45     </dependencies>
46   </dependencyManagement>
47
48   <dependencies>
49     <dependency>
50       <groupId>org.sonarsource.java</groupId>
51       <artifactId>sonar-jacoco-listeners</artifactId>
52       <version>${sonar-jacoco-listeners.version}</version>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.mockito</groupId>
57       <artifactId>mockito-core</artifactId>
58       <scope>test</scope>
59     </dependency>
60   </dependencies>
61
62   <build>
63     <pluginManagement>
64       <plugins>
65       <!-- Third-party plugins, grouped by groupId, alpha-sorted by artifactId -->
66         <plugin>
67           <!-- Support Blueprint XML construction using annotations -->
68           <groupId>org.apache.aries.blueprint</groupId>
69           <artifactId>blueprint-maven-plugin</artifactId>
70           <version>1.4.0</version>
71           <configuration>
72             <scanPaths>
73               <scanPath>org.opendaylight.netvirt</scanPath>
74             </scanPaths>
75           </configuration>
76           <dependencies>
77             <dependency>
78               <!-- See https://issues.apache.org/jira/browse/ARIES-1596 -->
79               <!-- This shouldn't be necessary with plugin version 1.5.0 -->
80               <groupId>org.apache.xbean</groupId>
81               <artifactId>xbean-finder-shaded</artifactId>
82               <version>4.5</version>
83             </dependency>
84           </dependencies>
85           <executions>
86             <execution>
87               <goals>
88                 <goal>blueprint-generate</goal>
89               </goals>
90             </execution>
91           </executions>
92         </plugin>
93       </plugins>
94     </pluginManagement>
95     <plugins>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-checkstyle-plugin</artifactId>
99         <configuration>
100           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
101         </configuration>
102       </plugin>
103       <plugin>
104         <groupId>org.codehaus.mojo</groupId>
105         <artifactId>findbugs-maven-plugin</artifactId>
106         <configuration>
107           <failOnError>true</failOnError>
108         </configuration>
109       </plugin>
110       <plugin>
111         <groupId>org.apache.maven.plugins</groupId>
112         <artifactId>maven-surefire-plugin</artifactId>
113         <configuration>
114           <properties>
115             <property>
116               <name>listener</name>
117               <value>org.sonar.java.jacoco.JUnitListener</value>
118             </property>
119           </properties>
120         </configuration>
121       </plugin>
122     </plugins>
123   </build>
124
125 </project>