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