Initial Code commit for OVS Support for vpnservice
[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.4.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.2.0-SNAPSHOT</version>
22   <packaging>pom</packaging>
23
24   <properties>
25     <!-- ODL -->
26     <vpnservices.version>0.2.0-SNAPSHOT</vpnservices.version>
27     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
28     <controller.mdsal.version>1.3.0-SNAPSHOT</controller.mdsal.version>
29     <vpns.mdsalutil.version>0.2.0-SNAPSHOT</vpns.mdsalutil.version>
30     <model.bgp.version>2013.07.15.8-SNAPSHOT</model.bgp.version>
31     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
32     <vpns.ovsdb.version>1.2.1-SNAPSHOT</vpns.ovsdb.version>
33   </properties>
34
35   <dependencyManagement>
36     <dependencies>
37       <dependency>
38         <groupId>org.opendaylight.mdsal</groupId>
39         <artifactId>mdsal-artifacts</artifactId>
40         <version>2.0.0-SNAPSHOT</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44       <dependency>
45         <groupId>org.opendaylight.mdsal.model</groupId>
46         <artifactId>mdsal-model-artifacts</artifactId>
47         <version>0.8.0-SNAPSHOT</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51     </dependencies>
52   </dependencyManagement>
53
54   <dependencies>
55     <!-- Testing Dependencies -->
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59       <scope>test</scope>
60     </dependency>
61
62     <dependency>
63       <groupId>org.mockito</groupId>
64       <artifactId>mockito-all</artifactId>
65       <scope>test</scope>
66     </dependency>
67   </dependencies>
68
69   <build>
70     <plugins>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-checkstyle-plugin</artifactId>
74           <executions>
75             <execution>
76               <phase>process-sources</phase>
77               <goals>
78                 <goal>check</goal>
79               </goals>
80             </execution>
81           </executions>
82         <configuration>
83           <configLocation>
84             ${project.basedir}/../../commons/src/main/resources/vpns_checks.xml
85           </configLocation>
86           <failsOnError>true</failsOnError>
87           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
88           <excludes>**\/target\/,**\/bin\/,**\/third-party,**\/yang-gen-sal</excludes>
89         </configuration>
90       </plugin>
91     </plugins>
92   </build>
93
94 </project>