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