Bump versions by x.(y+1).z
[lispflowmapping.git] / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015, 2017 Cisco Systems, Inc. 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>mdsal-it-parent</artifactId>
14     <version>9.0.2</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>mappingservice.integrationtest</artifactId>
21   <version>1.20.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
26
27   <properties>
28     <skipITs>false</skipITs>
29     <karaf.distro.groupId>org.opendaylight.lispflowmapping</karaf.distro.groupId>
30     <karaf.distro.artifactId>lispflowmapping-karaf</karaf.distro.artifactId>
31     <karaf.distro.version>1.20.0-SNAPSHOT</karaf.distro.version>
32     <karaf.distro.type>zip</karaf.distro.type>
33   </properties>
34
35   <dependencies>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>lispflowmapping-karaf</artifactId>
39       <version>${project.version}</version>
40       <type>zip</type>
41     </dependency>
42     <!--
43          Will need to add this back once we create tests over HTTP
44     <dependency>
45       <groupId>org.codehaus.jettison</groupId>
46       <artifactId>jettison</artifactId>
47     </dependency>
48     -->
49   </dependencies>
50
51   <profiles>
52     <profile>
53       <id>ignore-lispflowmapping-integrationtest</id>
54       <properties>
55         <maven.test.failure.ignore>true</maven.test.failure.ignore>
56       </properties>
57     </profile>
58   </profiles>
59
60   <build>
61     <pluginManagement>
62       <plugins>
63         <plugin>
64           <!-- Temporarily override the odlparent checkstyle configuration.
65                We want to enforce some simple rules and add more as we clean up code -->
66           <artifactId>maven-checkstyle-plugin</artifactId>
67           <configuration>
68             <configLocation>checkstyle/java_rules.xml</configLocation>
69             <includeTestSourceDirectory>true</includeTestSourceDirectory>
70             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
71             <failsOnError>true</failsOnError>
72             <consoleOutput>true</consoleOutput>
73           </configuration>
74           <dependencies>
75             <dependency>
76               <groupId>org.opendaylight.lispflowmapping</groupId>
77               <artifactId>common.build.tools</artifactId>
78               <version>${project.version}</version>
79             </dependency>
80           </dependencies>
81           <executions>
82             <execution>
83               <goals>
84                 <goal>check</goal>
85               </goals>
86               <phase>process-sources</phase>
87             </execution>
88           </executions>
89         </plugin>
90       </plugins>
91     </pluginManagement>
92   </build>
93 </project>