Merge "Fixing issues with idmanager Adding if-index support for interfacemanager"
[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     <liblldp.version>0.10.0-SNAPSHOT</liblldp.version>
34   </properties>
35
36   <dependencyManagement>
37     <dependencies>
38       <dependency>
39         <groupId>org.opendaylight.mdsal</groupId>
40         <artifactId>mdsal-artifacts</artifactId>
41         <version>2.0.0-SNAPSHOT</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45       <dependency>
46         <groupId>org.opendaylight.mdsal.model</groupId>
47         <artifactId>mdsal-model-artifacts</artifactId>
48         <version>0.8.0-SNAPSHOT</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52     </dependencies>
53   </dependencyManagement>
54
55   <dependencies>
56     <!-- Testing Dependencies -->
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-all</artifactId>
66       <scope>test</scope>
67     </dependency>
68   </dependencies>
69
70   <build>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-checkstyle-plugin</artifactId>
75           <executions>
76             <execution>
77               <phase>process-sources</phase>
78               <goals>
79                 <goal>check</goal>
80               </goals>
81             </execution>
82           </executions>
83         <configuration>
84           <configLocation>
85             ${project.basedir}/../../commons/src/main/resources/vpns_checks.xml
86           </configLocation>
87           <failsOnError>true</failsOnError>
88           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
89           <excludes>**\/target\/,**\/bin\/,**\/third-party,**\/yang-gen-sal</excludes>
90         </configuration>
91       </plugin>
92     </plugins>
93   </build>
94
95 </project>