Disable integration tests
[lispflowmapping.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.lispflowmapping</groupId>
7     <artifactId>lispflowmapping-commons</artifactId>
8     <version>1.7.0-SNAPSHOT</version>
9     <relativePath>commons/parent</relativePath>
10   </parent>
11
12   <artifactId>lispflowmapping-all</artifactId>
13   <packaging>pom</packaging>
14   <!-- Used by Sonar to set project name -->
15   <name>lispflowmapping</name>
16
17   <prerequisites>
18     <maven>3.1.1</maven>
19   </prerequisites>
20
21   <modules>
22     <module>commons/parent</module>
23     <module>commons/build_tools</module>
24     <module>commons/unittest_tools</module>
25     <module>artifacts</module>
26     <module>mappingservice</module>
27     <module>ui</module>
28     <module>features</module>
29     <module>lispflowmapping-karaf</module>
30     <!--
31     <module>integrationtest</module>
32     -->
33   </modules>
34
35   <build>
36     <plugins>
37 <!--       <plugin>
38         In this project we want to automatically sort all poms, thus we
39              add the invocation of this plugin to the root parent. Configuration is in
40              odlparent.
41         <groupId>com.google.code.sortpom</groupId>
42         <artifactId>maven-sortpom-plugin</artifactId>
43       </plugin> -->
44       <plugin>
45         <!-- Check for coding style violations.  Configuration in odlparent. -->
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-checkstyle-plugin</artifactId>
48       </plugin>
49     </plugins>
50   </build>
51
52   <profiles>
53     <profile>
54       <!--
55           This profile is to ensure we only build javadocs reports
56           when we plan to deploy Maven site for our project.
57       -->
58       <id>maven-site</id>
59       <activation>
60         <file>
61           <exists>${user.dir}/deploy-site.xml</exists>
62         </file>
63       </activation>
64
65       <build>
66         <plugins>
67           <plugin>
68             <groupId>org.apache.maven.plugins</groupId>
69             <artifactId>maven-javadoc-plugin</artifactId>
70             <inherited>false</inherited>
71             <executions>
72               <execution>
73                 <id>aggregate</id>
74                 <goals>
75                   <goal>aggregate</goal>
76                 </goals>
77                 <phase>package</phase>
78               </execution>
79             </executions>
80           </plugin>
81         </plugins>
82       </build>
83     </profile>
84   </profiles>
85 </project>