Bug-2229: RFC6286 - AS-wide Unique BGP Identifier
[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>commons.parent</artifactId>
23         <version>0.4.0-SNAPSHOT</version>
24         <relativePath>commons/parent</relativePath>
25     </parent>
26
27     <artifactId>releasepom</artifactId>
28     <packaging>pom</packaging>
29     <name>bgpcep</name> <!-- Used by Sonar to set project 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         <!--Test tools -->
48         <module>data-change-counter</module>
49         <module>data-change-counter-controller-config</module>
50
51         <!-- Parents -->
52         <module>commons/parent</module>
53
54     </modules>
55
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.apache.maven.plugins</groupId>
60                 <artifactId>maven-javadoc-plugin</artifactId>
61                 <executions>
62                     <execution>
63                         <id>aggregate</id>
64                         <goals>
65                             <goal>aggregate</goal>
66                         </goals>
67                         <phase>site</phase>
68                     </execution>
69                 </executions>
70             </plugin>
71         </plugins>
72     </build>
73
74     <reporting>
75         <plugins>
76             <plugin>
77                 <groupId>org.apache.maven.plugins</groupId>
78                 <artifactId>maven-project-info-reports-plugin</artifactId>
79                 <version>${maven.info.reports.version}</version>
80                 <reportSets>
81                     <reportSet>
82                         <reports>
83                             <report>dependency-info</report>
84                             <report>license</report>
85                         </reports>
86                     </reportSet>
87                 </reportSets>
88             </plugin>
89             <!--plugin>
90                 <groupId>org.apache.maven.plugins</groupId>
91                 <artifactId>maven-javadoc-plugin</artifactId>
92                 <reportSets>
93                     <reportSet>
94                         <id>aggregate</id>
95                         <reports>
96                             <report>aggregate</report>
97                         </reports>
98                     </reportSet>
99                 </reportSets>
100             </plugin-->
101             <!--plugin>
102                 <groupId>org.codehaus.mojo</groupId>
103                 <artifactId>findbugs-maven-plugin</artifactId>
104                 <version>2.4.0</version>
105                 <configuration>
106                     <effort>Max</effort>
107                     <threshold>Low</threshold>
108                     <goal>site</goal>
109                 </configuration>
110             </plugin-->
111         </plugins>
112     </reporting>
113
114 </project>