Bumping versions by 0.1.0 for next dev cycle
[odlparent.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3  Copyright (c) 2014, 2015 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 --><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">
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>odlparent-lite</artifactId>
14         <version>1.7.0-SNAPSHOT</version>
15         <relativePath>odlparent-lite</relativePath>
16     </parent>
17
18     <groupId>org.opendaylight.odlparent</groupId>
19     <artifactId>odlparent-aggregator</artifactId>
20     <version>1.7.0-SNAPSHOT</version>
21     <name>odlparent</name> <!-- Used by Sonar to set project name -->
22     <packaging>pom</packaging>
23
24     <scm>
25         <connection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</connection>
26         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</developerConnection>
27         <tag>HEAD</tag>
28         <url>https://wiki.opendaylight.org/view/ODL_Root_Parent:Main</url>
29     </scm>
30
31     <modules>
32         <!-- odlparent tools -->
33         <module>checkstyle</module>
34         <module>license</module>
35
36         <!-- odlparent core -->
37         <module>bundle-parent</module>
38         <module>features-parent</module>
39         <module>features-test</module>
40         <module>features-odlparent</module>
41         <module>odlparent-artifacts</module>
42         <module>odlparent</module>
43         <module>odlparent-lite</module>
44         <module>karaf-plugin</module>
45     </modules>
46
47     <build>
48         <plugins>
49             <plugin>
50                 <groupId>org.apache.maven.plugins</groupId>
51                 <artifactId>maven-deploy-plugin</artifactId>
52                 <version>2.8.2</version>
53                 <configuration>
54                     <skip>true</skip>
55                 </configuration>
56             </plugin>
57         </plugins>
58     </build>
59
60     <profiles>
61         <profile>
62             <!--
63                 This profile is to ensure we only build javadocs reports
64                 when we plan to deploy Maven site for our project.
65             -->
66             <id>maven-site</id>
67             <activation>
68                 <file>
69                     <exists>${user.dir}/deploy-site.xml</exists>
70                 </file>
71             </activation>
72
73             <build>
74                 <plugins>
75                     <plugin>
76                         <groupId>org.apache.maven.plugins</groupId>
77                         <artifactId>maven-javadoc-plugin</artifactId>
78                         <inherited>false</inherited>
79                         <executions>
80                             <execution>
81                                 <id>aggregate</id>
82                                 <goals>
83                                     <goal>aggregate</goal>
84                                 </goals>
85                                 <phase>package</phase>
86                             </execution>
87                         </executions>
88                     </plugin>
89                 </plugins>
90             </build>
91         </profile>
92     </profiles>
93
94     <!--
95         Maven Site Configuration
96
97         The following configuration is necessary for maven-site-plugin to
98         correctly identify the correct deployment path for OpenDaylight Maven
99         sites.
100     -->
101     <url>${odl.site.url}/${project.groupId}/${stream}/</url>
102
103     <distributionManagement>
104         <site>
105             <id>opendaylight-site</id>
106             <url>${nexus.site.url}/</url>
107         </site>
108     </distributionManagement>
109 </project>