Version bump.
[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.5.0-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>data-change-counter-controller-config</module>
55
56     </modules>
57
58     <build>
59         <plugins>
60             <plugin>
61                 <artifactId>maven-deploy-plugin</artifactId>
62                 <configuration>
63                     <skip>true</skip>
64                 </configuration>
65             </plugin>
66             <plugin>
67                 <groupId>org.apache.maven.plugins</groupId>
68                 <artifactId>maven-javadoc-plugin</artifactId>
69                 <executions>
70                     <execution>
71                         <id>aggregate</id>
72                         <goals>
73                             <goal>aggregate</goal>
74                         </goals>
75                         <phase>site</phase>
76                     </execution>
77                 </executions>
78             </plugin>
79         </plugins>
80     </build>
81
82     <reporting>
83         <plugins>
84             <plugin>
85                 <groupId>org.apache.maven.plugins</groupId>
86                 <artifactId>maven-project-info-reports-plugin</artifactId>
87                 <version>${maven.info.reports.version}</version>
88                 <reportSets>
89                     <reportSet>
90                         <reports>
91                             <report>dependency-info</report>
92                             <report>license</report>
93                         </reports>
94                     </reportSet>
95                 </reportSets>
96             </plugin>
97             <!--plugin>
98                 <groupId>org.apache.maven.plugins</groupId>
99                 <artifactId>maven-javadoc-plugin</artifactId>
100                 <reportSets>
101                     <reportSet>
102                         <id>aggregate</id>
103                         <reports>
104                             <report>aggregate</report>
105                         </reports>
106                     </reportSet>
107                 </reportSets>
108             </plugin-->
109         </plugins>
110     </reporting>
111
112 </project>