remove IT, because SFT does that now
[genius.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 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 INTERNAL
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   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>odlparent-lite</artifactId>
15     <version>3.0.2</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>genius-aggregator</artifactId>
21   <version>0.4.0-SNAPSHOT</version>
22   <name>genius</name>
23   <packaging>pom</packaging>
24
25   <scm>
26     <connection>scm:git:ssh://git.opendaylight.org:29418/genius.git</connection>
27     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/genius.git</developerConnection>
28     <tag>HEAD</tag>
29     <url>https://wiki.opendaylight.org/view/genius:Main</url>
30   </scm>
31
32   <modules>
33     <module>commons</module>
34     <module>interfacemanager</module>
35     <module>itm</module>
36     <module>lockmanager</module>
37     <module>mdsalutil</module>
38     <module>arputil</module>
39     <module>idmanager</module>
40     <module>alivenessmonitor</module>
41     <module>karaf</module>
42     <module>features</module>
43     <module>artifacts</module>
44     <module>fcapsmanager</module>
45     <module>fcapsapplication</module>
46     <module>resourcemanager</module>
47     <module>srm</module>
48   </modules>
49
50   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
51   <build>
52     <plugins>
53       <plugin>
54         <groupId>org.apache.maven.plugins</groupId>
55         <artifactId>maven-deploy-plugin</artifactId>
56         <configuration>
57           <skip>true</skip>
58         </configuration>
59       </plugin>
60       <plugin>
61         <groupId>org.apache.maven.plugins</groupId>
62         <artifactId>maven-install-plugin</artifactId>
63         <configuration>
64           <skip>true</skip>
65         </configuration>
66       </plugin>
67     </plugins>
68   </build>
69
70   <profiles>
71     <profile>
72       <!--
73           This profile is to ensure we only build javadocs reports
74           when we plan to deploy Maven site for our project.
75       -->
76       <id>maven-site</id>
77       <activation>
78         <file>
79           <exists>${user.dir}/deploy-site.xml</exists>
80         </file>
81       </activation>
82
83       <build>
84         <plugins>
85           <plugin>
86             <groupId>org.apache.maven.plugins</groupId>
87             <artifactId>maven-javadoc-plugin</artifactId>
88             <inherited>false</inherited>
89             <executions>
90               <execution>
91                 <id>aggregate</id>
92                 <goals>
93                   <goal>aggregate</goal>
94                 </goals>
95                 <phase>package</phase>
96             </execution>
97             </executions>
98           </plugin>
99         </plugins>
100       </build>
101     </profile>
102   </profiles>
103
104 </project>