Merge "Fix for bug 3357, handled update on vpn interface"
[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.3.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.1.0-SNAPSHOT</version>
22   <packaging>pom</packaging>
23
24   <properties>
25     <!-- ODL -->
26     <vpnservices.version>0.1.0-SNAPSHOT</vpnservices.version>
27     <jacoco.version>0.7.2.201409121644</jacoco.version>
28     <ietf.inet.types.version>2010.09.24.7-SNAPSHOT</ietf.inet.types.version>
29     <ietf.yang.types.version>2010.09.24.7-SNAPSHOT</ietf.yang.types.version>
30     <ietf.interfaces.version>2014.05.08.7-SNAPSHOT</ietf.interfaces.version>
31     <iana.if.type.version>2014.05.08.7-SNAPSHOT</iana.if.type.version>
32     <yang.ext.version>2013.09.07.7-SNAPSHOT</yang.ext.version>
33     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
34     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
35     <vpns.mdsalutil.version>0.1.0-SNAPSHOT</vpns.mdsalutil.version>
36     <model.bgp.version>2013.07.15.7-SNAPSHOT</model.bgp.version>
37     <openflowplugin.version>0.1.0-SNAPSHOT</openflowplugin.version>
38   </properties>
39
40   <dependencies>
41     <!-- Testing Dependencies -->
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <scope>test</scope>
46     </dependency>
47
48     <dependency>
49       <groupId>org.mockito</groupId>
50       <artifactId>mockito-all</artifactId>
51       <scope>test</scope>
52     </dependency>
53   </dependencies>
54
55   <build>
56     <plugins>
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-checkstyle-plugin</artifactId>
60           <executions>
61             <execution>
62               <phase>process-sources</phase>
63               <goals>
64                 <goal>check</goal>
65               </goals>
66             </execution>
67           </executions>
68         <configuration>
69           <configLocation>
70             ${project.basedir}/../../commons/src/main/resources/vpns_checks.xml
71           </configLocation>
72           <failsOnError>true</failsOnError>
73           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
74           <excludes>**\/target\/,**\/bin\/,**\/third-party,**\/yang-gen-sal</excludes>
75         </configuration>
76       </plugin>
77      <plugin>
78        <groupId>org.jacoco</groupId>
79        <artifactId>jacoco-maven-plugin</artifactId>
80        <configuration>
81          <includes>
82            <include>org.opendaylight.vpnservice.*</include>
83          </includes>
84        </configuration>
85        <executions>
86          <execution>
87            <id>pre-test</id>
88            <goals>
89              <goal>prepare-agent</goal>
90            </goals>
91          </execution>
92          <execution>
93            <id>post-test</id>
94            <goals>
95              <goal>report</goal>
96            </goals>
97            <phase>test</phase>
98          </execution>
99        </executions>
100      </plugin>
101     </plugins>
102   </build>
103
104 </project>