Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / vpnservice / commons / config-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2015 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
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.6.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.netvirt</groupId>
20   <artifactId>config-parent</artifactId>
21   <version>0.4.0-SNAPSHOT</version>
22   <packaging>pom</packaging>
23
24   <properties>
25     <!-- ODL -->
26     <vpnservices.version>0.4.0-SNAPSHOT</vpnservices.version>
27     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
28     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
29     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
30     <vpns.mdsalutil.version>0.4.0-SNAPSHOT</vpns.mdsalutil.version>
31     <model.bgp.version>2013.07.15.9-SNAPSHOT</model.bgp.version>
32     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
33     <vpns.ovsdb.version>1.4.0-SNAPSHOT</vpns.ovsdb.version>
34     <liblldp.version>0.12.0-SNAPSHOT</liblldp.version>
35     <karaf.shell.console.version>3.0.3</karaf.shell.console.version>
36     <neutron.version>0.8.0-SNAPSHOT</neutron.version>
37     <genius.version>0.2.0-SNAPSHOT</genius.version>
38     <infrautils.version>1.1.0-SNAPSHOT</infrautils.version>
39   </properties>
40
41   <dependencyManagement>
42     <dependencies>
43       <dependency>
44         <groupId>org.opendaylight.mdsal</groupId>
45         <artifactId>mdsal-artifacts</artifactId>
46         <version>2.2.0-SNAPSHOT</version>
47         <type>pom</type>
48         <scope>import</scope>
49       </dependency>
50       <dependency>
51         <groupId>org.opendaylight.mdsal.model</groupId>
52         <artifactId>mdsal-model-artifacts</artifactId>
53         <version>${mdsal.model.version}</version>
54         <type>pom</type>
55         <scope>import</scope>
56       </dependency>
57     </dependencies>
58   </dependencyManagement>
59
60   <dependencies>
61     <!-- Testing Dependencies -->
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67
68     <dependency>
69       <groupId>org.mockito</groupId>
70       <artifactId>mockito-all</artifactId>
71       <scope>test</scope>
72     </dependency>
73
74     <dependency>
75       <groupId>org.codehaus.sonar-plugins.java</groupId>
76       <artifactId>sonar-jacoco-listeners</artifactId>
77       <version>${sonar-jacoco-listeners.version}</version>
78       <scope>test</scope>
79     </dependency>
80   </dependencies>
81
82   <build>
83     <plugins>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-checkstyle-plugin</artifactId>
87         <configuration>
88           <!--<propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>-->
89           <excludes>**/yang/</excludes>
90         </configuration>
91       </plugin>
92       <plugin>
93         <groupId>org.apache.maven.plugins</groupId>
94         <artifactId>maven-surefire-plugin</artifactId>
95         <configuration>
96           <properties>
97             <property>
98               <name>listener</name>
99               <value>org.sonar.java.jacoco.JUnitListener</value>
100             </property>
101           </properties>
102         </configuration>
103       </plugin>
104     </plugins>
105   </build>
106
107   <!--
108       Maven Site Configuration
109
110       The following configuration is necessary for maven-site-plugin to
111       correctly identify the correct deployment path for OpenDaylight Maven
112       sites.
113   -->
114   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
115
116   <distributionManagement>
117     <site>
118       <id>opendaylight-site</id>
119       <url>${nexus.site.url}/${project.artifactId}/</url>
120     </site>
121   </distributionManagement>
122 </project>