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.14.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.8.0-SNAPSHOT</version>
24   <packaging>pom</packaging>
25
26   <properties>
27     <controller.mdsal.version>1.9.0-SNAPSHOT</controller.mdsal.version>
28     <genius.version>0.6.0-SNAPSHOT</genius.version>
29     <infrautils.version>1.5.0-SNAPSHOT</infrautils.version>
30     <model.bgp.version>2013.07.15.14.0-SNAPSHOT</model.bgp.version>
31     <neutron.version>0.12.0-SNAPSHOT</neutron.version>
32     <openflowplugin.version>0.8.0-SNAPSHOT</openflowplugin.version>
33     <ovsdb.version>1.8.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         <plugin>
94           <artifactId>maven-checkstyle-plugin</artifactId>
95           <dependencies>
96             <dependency>
97               <groupId>org.opendaylight.netvirt</groupId>
98               <artifactId>checkstyle</artifactId>
99               <version>0.8.0-SNAPSHOT</version>
100             </dependency>
101           </dependencies>
102           <executions>
103             <execution>
104               <id>check-databroker</id>
105               <goals>
106                 <goal>check</goal>
107               </goals>
108               <phase>process-sources</phase>
109               <configuration>
110                 <configLocation>databroker-checks.xml</configLocation>
111                 <includeResources>false</includeResources>
112                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
113                 <includeTestResources>false</includeTestResources>
114                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
115                 <failsOnError>true</failsOnError>
116                 <consoleOutput>true</consoleOutput>
117               </configuration>
118             </execution>
119           </executions>
120         </plugin>
121       </plugins>
122     </pluginManagement>
123     <plugins>
124       <plugin>
125         <groupId>org.apache.maven.plugins</groupId>
126         <artifactId>maven-checkstyle-plugin</artifactId>
127         <configuration>
128           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
129         </configuration>
130       </plugin>
131       <plugin>
132         <groupId>org.codehaus.mojo</groupId>
133         <artifactId>findbugs-maven-plugin</artifactId>
134         <configuration>
135           <plugins>
136             <plugin>
137               <groupId>jp.skypencil.findbugs.slf4j</groupId>
138               <artifactId>bug-pattern</artifactId>
139               <version>1.4.0</version>
140             </plugin>
141           </plugins>
142           <failOnError>true</failOnError>
143         </configuration>
144       </plugin>
145       <plugin>
146         <groupId>org.apache.maven.plugins</groupId>
147         <artifactId>maven-surefire-plugin</artifactId>
148         <configuration>
149           <properties>
150             <property>
151               <name>listener</name>
152               <value>org.sonar.java.jacoco.JUnitListener</value>
153             </property>
154           </properties>
155         </configuration>
156       </plugin>
157     </plugins>
158   </build>
159
160 </project>