Do not rely on route attributes being present
[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"
12
13     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14
15     <modelVersion>4.0.0</modelVersion>
16     <scm>
17         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
18         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
19         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
20         <tag>HEAD</tag>
21     </scm>
22     <parent>
23         <groupId>org.opendaylight.bgpcep</groupId>
24         <artifactId>commons.parent</artifactId>
25         <version>0.3.0-SNAPSHOT</version>
26         <relativePath>commons/parent</relativePath>
27     </parent>
28
29     <artifactId>releasepom</artifactId>
30     <packaging>pom</packaging>
31     <name>BGPCEP release</name>
32     <description>BGPCEP top-level pom</description>
33
34     <modules>
35         <!-- Common infra -->
36         <module>concepts</module>
37         <module>util</module>
38
39         <!-- Subsystems -->
40         <module>bgp</module>
41         <module>pcep</module>
42         <module>programming</module>
43         <module>rsvp</module>
44         <module>topology</module>
45
46         <!-- Integration tests -->
47         <module>integration-tests</module>
48
49         <!-- Parents -->
50         <module>commons/parent</module>
51     </modules>
52
53     <build>
54         <plugins>
55             <plugin>
56                 <groupId>org.apache.maven.plugins</groupId>
57                 <artifactId>maven-javadoc-plugin</artifactId>
58                 <executions>
59                     <execution>
60                         <id>aggregate</id>
61                         <goals>
62                             <goal>aggregate</goal>
63                         </goals>
64                         <phase>site</phase>
65                     </execution>
66                 </executions>
67             </plugin>
68         </plugins>
69     </build>
70
71     <reporting>
72         <plugins>
73             <plugin>
74                 <groupId>org.apache.maven.plugins</groupId>
75                 <artifactId>maven-project-info-reports-plugin</artifactId>
76                 <version>${maven.info.reports.version}</version>
77                 <reportSets>
78                     <reportSet>
79                         <reports>
80                             <report>dependency-info</report>
81                             <report>license</report>
82                         </reports>
83                     </reportSet>
84                 </reportSets>
85             </plugin>
86             <!--plugin>
87                 <groupId>org.apache.maven.plugins</groupId>
88                 <artifactId>maven-javadoc-plugin</artifactId>
89                 <reportSets>
90                     <reportSet>
91                         <id>aggregate</id>
92                         <reports>
93                             <report>aggregate</report>
94                         </reports>
95                     </reportSet>
96                 </reportSets>
97             </plugin-->
98             <!--plugin>
99                 <groupId>org.codehaus.mojo</groupId>
100                 <artifactId>findbugs-maven-plugin</artifactId>
101                 <version>2.4.0</version>
102                 <configuration>
103                     <effort>Max</effort>
104                     <threshold>Low</threshold>
105                     <goal>site</goal>
106                 </configuration>
107             </plugin-->
108         </plugins>
109     </reporting>
110
111 </project>