[maven-release-plugin] prepare release master-tagforprepareonly-bgpcep-bulk-release...
[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>master-tagforprepareonly-bgpcep-bulk-release-prepare-only-6</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.bgpcep</groupId>
22         <artifactId>commons.parent</artifactId>
23         <version>0.3.0</version>
24         <relativePath>commons/parent</relativePath>
25     </parent>
26
27     <artifactId>releasepom</artifactId>
28     <packaging>pom</packaging>
29     <name>BGPCEP release</name>
30     <description>BGPCEP top-level pom</description>
31
32     <modules>
33         <!-- Common infra -->
34         <module>concepts</module>
35         <module>util</module>
36
37         <!-- Subsystems -->
38         <module>bgp</module>
39         <module>pcep</module>
40         <module>programming</module>
41         <module>rsvp</module>
42         <module>topology</module>
43
44         <!-- Integration tests -->
45         <module>integration-tests</module>
46
47         <!-- Parents -->
48         <module>commons/parent</module>
49     </modules>
50
51     <build>
52         <plugins>
53             <plugin>
54                 <groupId>org.apache.maven.plugins</groupId>
55                 <artifactId>maven-javadoc-plugin</artifactId>
56                 <executions>
57                     <execution>
58                         <id>aggregate</id>
59                         <goals>
60                             <goal>aggregate</goal>
61                         </goals>
62                         <phase>site</phase>
63                     </execution>
64                 </executions>
65             </plugin>
66         </plugins>
67     </build>
68
69     <reporting>
70         <plugins>
71             <plugin>
72                 <groupId>org.apache.maven.plugins</groupId>
73                 <artifactId>maven-project-info-reports-plugin</artifactId>
74                 <version>${maven.info.reports.version}</version>
75                 <reportSets>
76                     <reportSet>
77                         <reports>
78                             <report>dependency-info</report>
79                             <report>license</report>
80                         </reports>
81                     </reportSet>
82                 </reportSets>
83             </plugin>
84             <!--plugin>
85                 <groupId>org.apache.maven.plugins</groupId>
86                 <artifactId>maven-javadoc-plugin</artifactId>
87                 <reportSets>
88                     <reportSet>
89                         <id>aggregate</id>
90                         <reports>
91                             <report>aggregate</report>
92                         </reports>
93                     </reportSet>
94                 </reportSets>
95             </plugin-->
96             <!--plugin>
97                 <groupId>org.codehaus.mojo</groupId>
98                 <artifactId>findbugs-maven-plugin</artifactId>
99                 <version>2.4.0</version>
100                 <configuration>
101                     <effort>Max</effort>
102                     <threshold>Low</threshold>
103                     <goal>site</goal>
104                 </configuration>
105             </plugin-->
106         </plugins>
107     </reporting>
108
109 </project>