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