Fix build
[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>1.6.0-SNAPSHOT</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.6.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.6.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   <build>
52     <pluginManagement>
53       <plugins>
54         <plugin>
55           <!-- Temporarily override the odlparent checkstyle configuration.
56                We want to enforce some simple rules and add more as we clean up code -->
57           <artifactId>maven-checkstyle-plugin</artifactId>
58           <configuration>
59             <configLocation>checkstyle/java_rules.xml</configLocation>
60             <includeTestSourceDirectory>true</includeTestSourceDirectory>
61             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
62             <failsOnError>true</failsOnError>
63             <consoleOutput>true</consoleOutput>
64           </configuration>
65           <dependencies>
66             <dependency>
67               <groupId>org.opendaylight.lispflowmapping</groupId>
68               <artifactId>common.build.tools</artifactId>
69               <version>${project.version}</version>
70             </dependency>
71           </dependencies>
72           <executions>
73             <execution>
74               <goals>
75                 <goal>check</goal>
76               </goals>
77               <phase>process-sources</phase>
78             </execution>
79           </executions>
80         </plugin>
81       </plugins>
82     </pluginManagement>
83   </build>
84
85   <!--
86       Maven Site Configuration
87
88       The following configuration is necessary for maven-site-plugin to
89       correctly identify the correct deployment path for OpenDaylight Maven
90       sites.
91   -->
92   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
93
94   <distributionManagement>
95     <site>
96       <id>opendaylight-site</id>
97       <url>${nexus.site.url}/${project.artifactId}/</url>
98     </site>
99   </distributionManagement>
100
101 </project>