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