Bump versions by x.y.(z+1)
[bgpcep.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <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">
12
13     <modelVersion>4.0.0</modelVersion>
14     <scm>
15         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
16         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
17         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
18         <tag>HEAD</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.bgpcep</groupId>
22         <artifactId>bgpcep-parent</artifactId>
23         <version>0.6.5-SNAPSHOT</version>
24         <relativePath>parent</relativePath>
25     </parent>
26
27     <artifactId>bgpcep-aggregator</artifactId>
28     <packaging>pom</packaging>
29     <name>bgpcep</name> <!-- Used by Sonar to set project name -->
30     <description>BGPCEP top-level aggregator</description>
31
32     <modules>
33         <!-- Well-known -->
34         <module>artifacts</module>
35         <module>features</module>
36         <module>parent</module>
37
38         <!-- Common infra -->
39         <module>concepts</module>
40         <module>util</module>
41
42         <!-- Subsystems -->
43         <module>bgp</module>
44         <module>pcep</module>
45         <module>programming</module>
46         <module>rsvp</module>
47         <module>topology</module>
48
49         <!-- Integration tests -->
50         <module>integration-tests</module>
51
52         <!--Test tools -->
53         <module>data-change-counter</module>
54         <module>testtool-util</module>
55         <module>data-change-counter-controller-config</module>
56
57         <module>distribution-karaf</module>
58
59     </modules>
60
61     <build>
62         <plugins>
63             <plugin>
64                 <artifactId>maven-deploy-plugin</artifactId>
65                 <configuration>
66                     <skip>true</skip>
67                 </configuration>
68             </plugin>
69             <plugin>
70                 <groupId>org.apache.maven.plugins</groupId>
71                 <artifactId>maven-javadoc-plugin</artifactId>
72                 <executions>
73                     <execution>
74                         <id>aggregate</id>
75                         <goals>
76                             <goal>aggregate</goal>
77                         </goals>
78                         <phase>site</phase>
79                     </execution>
80                 </executions>
81             </plugin>
82         </plugins>
83     </build>
84
85     <reporting>
86         <plugins>
87             <plugin>
88                 <groupId>org.apache.maven.plugins</groupId>
89                 <artifactId>maven-project-info-reports-plugin</artifactId>
90                 <version>${maven.info.reports.version}</version>
91                 <reportSets>
92                     <reportSet>
93                         <reports>
94                             <report>dependency-info</report>
95                             <report>license</report>
96                         </reports>
97                     </reportSet>
98                 </reportSets>
99             </plugin>
100         </plugins>
101     </reporting>
102
103   <profiles>
104     <profile>
105       <!--
106           This profile is to ensure we only build javadocs reports
107           when we plan to deploy Maven site for our project.
108       -->
109       <id>maven-site</id>
110       <activation>
111         <file>
112           <exists>${user.dir}/deploy-site.xml</exists>
113         </file>
114       </activation>
115
116       <build>
117         <plugins>
118           <plugin>
119             <groupId>org.apache.maven.plugins</groupId>
120             <artifactId>maven-javadoc-plugin</artifactId>
121             <inherited>false</inherited>
122             <executions>
123               <execution>
124                 <id>aggregate</id>
125                 <goals>
126                   <goal>aggregate</goal>
127                 </goals>
128                 <phase>package</phase>
129             </execution>
130             </executions>
131           </plugin>
132         </plugins>
133       </build>
134     </profile>
135   </profiles>
136
137   <!--
138       Maven Site Configuration
139
140       The following configuration is necessary for maven-site-plugin to
141       correctly identify the correct deployment path for OpenDaylight Maven
142       sites.
143   -->
144   <url>${odl.site.url}/${project.groupId}/${stream}/</url>
145
146   <distributionManagement>
147     <site>
148       <id>opendaylight-site</id>
149       <url>${nexus.site.url}/</url>
150     </site>
151   </distributionManagement>
152 </project>