Merge "Increase max service-binding's"
[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
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>odlparent-lite</artifactId>
14     <version>1.7.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.genius</groupId>
19   <artifactId>genius-aggregator</artifactId>
20   <version>0.1.0-SNAPSHOT</version>
21   <name>genius</name>
22   <packaging>pom</packaging>
23   <modelVersion>4.0.0</modelVersion>
24
25   <prerequisites>
26     <maven>3.1.1</maven>
27   </prerequisites>
28
29   <scm>
30     <connection>scm:git:ssh://git.opendaylight.org:29418/genius.git</connection>
31     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/genius.git</developerConnection>
32     <tag>HEAD</tag>
33     <url>https://wiki.opendaylight.org/view/genius:Main</url>
34   </scm>
35
36   <modules>
37     <module>commons/binding-parent</module>
38     <module>commons/config-parent</module>
39     <module>interfacemanager</module>
40     <module>itm</module>
41     <module>lockmanager</module>
42     <module>mdsalutil</module>
43     <module>arputil</module>
44     <module>idmanager</module>
45     <module>alivenessmonitor</module>
46     <module>karaf</module>
47     <module>features</module>
48     <module>artifacts</module>
49     <module>fcapsmanager</module>
50     <module>fcapsapplication</module>
51     <module>resourcemanager</module>
52     <!--module>it</module-->
53   </modules>
54
55   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.maven.plugins</groupId>
60         <artifactId>maven-deploy-plugin</artifactId>
61         <configuration>
62           <skip>true</skip>
63         </configuration>
64       </plugin>
65       <plugin>
66         <groupId>org.apache.maven.plugins</groupId>
67         <artifactId>maven-install-plugin</artifactId>
68         <configuration>
69           <skip>true</skip>
70         </configuration>
71       </plugin>
72     </plugins>
73   </build>
74
75   <profiles>
76     <profile>
77       <!--
78           This profile is to ensure we only build javadocs reports
79           when we plan to deploy Maven site for our project.
80       -->
81       <id>maven-site</id>
82       <activation>
83         <file>
84           <exists>${user.dir}/deploy-site.xml</exists>
85         </file>
86       </activation>
87
88       <build>
89         <plugins>
90           <plugin>
91             <groupId>org.apache.maven.plugins</groupId>
92             <artifactId>maven-javadoc-plugin</artifactId>
93             <inherited>false</inherited>
94             <executions>
95               <execution>
96                 <id>aggregate</id>
97                 <goals>
98                   <goal>aggregate</goal>
99                 </goals>
100                 <phase>package</phase>
101             </execution>
102             </executions>
103           </plugin>
104         </plugins>
105       </build>
106     </profile>
107   </profiles>
108
109   <!--
110       Maven Site Configuration
111
112       The following configuration is necessary for maven-site-plugin to
113       correctly identify the correct deployment path for OpenDaylight Maven
114       sites.
115   -->
116   <url>${odl.site.url}/${project.groupId}/${stream}/</url>
117
118   <distributionManagement>
119     <site>
120       <id>opendaylight-site</id>
121       <url>${nexus.site.url}/</url>
122     </site>
123   </distributionManagement>
124 </project>