Bump versions by 0.1.0 for next dev cycle
[vpnservice.git] / 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.5.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.vpnservice</groupId>
20   <artifactId>config-parent</artifactId>
21   <version>0.3.0-SNAPSHOT</version>
22   <packaging>pom</packaging>
23
24   <properties>
25     <!-- ODL -->
26     <vpnservices.version>0.3.0-SNAPSHOT</vpnservices.version>
27     <yangtools.version>0.9.0-SNAPSHOT</yangtools.version>
28     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
29     <vpns.mdsalutil.version>0.3.0-SNAPSHOT</vpns.mdsalutil.version>
30     <model.bgp.version>2013.07.15.9-SNAPSHOT</model.bgp.version>
31     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
32     <vpns.ovsdb.version>1.3.0-SNAPSHOT</vpns.ovsdb.version>
33     <liblldp.version>0.11.0-SNAPSHOT</liblldp.version>
34     <karaf.shell.console.version>3.0.3</karaf.shell.console.version>
35     <neutron.version>0.7.0-SNAPSHOT</neutron.version>
36   </properties>
37
38   <dependencyManagement>
39     <dependencies>
40       <dependency>
41         <groupId>org.opendaylight.mdsal</groupId>
42         <artifactId>mdsal-artifacts</artifactId>
43         <version>2.1.0-SNAPSHOT</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47       <dependency>
48         <groupId>org.opendaylight.mdsal.model</groupId>
49         <artifactId>mdsal-model-artifacts</artifactId>
50         <version>0.9.0-SNAPSHOT</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54     </dependencies>
55   </dependencyManagement>
56
57   <dependencies>
58     <!-- Testing Dependencies -->
59     <dependency>
60       <groupId>junit</groupId>
61       <artifactId>junit</artifactId>
62       <scope>test</scope>
63     </dependency>
64
65     <dependency>
66       <groupId>org.mockito</groupId>
67       <artifactId>mockito-all</artifactId>
68       <scope>test</scope>
69     </dependency>
70   </dependencies>
71
72   <build>
73     <plugins>
74       <plugin>
75         <groupId>org.apache.maven.plugins</groupId>
76         <artifactId>maven-checkstyle-plugin</artifactId>
77           <executions>
78             <execution>
79               <phase>process-sources</phase>
80               <goals>
81                 <goal>check</goal>
82               </goals>
83             </execution>
84           </executions>
85         <configuration>
86           <configLocation>
87             ${project.basedir}/../../commons/src/main/resources/vpns_checks.xml
88           </configLocation>
89           <failsOnError>true</failsOnError>
90           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
91           <excludes>**\/target\/,**\/bin\/,**\/third-party,**\/yang-gen-sal</excludes>
92         </configuration>
93       </plugin>
94     </plugins>
95   </build>
96
97 </project>