Merge "Initial support for RFC2385"
[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.3.1-SNAPSHOT</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         <module>tcp-md5</module>
44
45         <!-- Integration tests -->
46         <module>integration-tests</module>
47
48         <!-- Parents -->
49         <module>commons/parent</module>
50
51         <!-- Distributions -->
52         <module>commons/distributions/bgpcep-controller</module>
53     </modules>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <groupId>org.apache.maven.plugins</groupId>
59                 <artifactId>maven-javadoc-plugin</artifactId>
60                 <executions>
61                     <execution>
62                         <id>aggregate</id>
63                         <goals>
64                             <goal>aggregate</goal>
65                         </goals>
66                         <phase>site</phase>
67                     </execution>
68                 </executions>
69             </plugin>
70         </plugins>
71     </build>
72
73     <reporting>
74         <plugins>
75             <plugin>
76                 <groupId>org.apache.maven.plugins</groupId>
77                 <artifactId>maven-project-info-reports-plugin</artifactId>
78                 <version>${maven.info.reports.version}</version>
79                 <reportSets>
80                     <reportSet>
81                         <reports>
82                             <report>dependency-info</report>
83                             <report>license</report>
84                         </reports>
85                     </reportSet>
86                 </reportSets>
87             </plugin>
88             <!--plugin>
89                 <groupId>org.apache.maven.plugins</groupId>
90                 <artifactId>maven-javadoc-plugin</artifactId>
91                 <reportSets>
92                     <reportSet>
93                         <id>aggregate</id>
94                         <reports>
95                             <report>aggregate</report>
96                         </reports>
97                     </reportSet>
98                 </reportSets>
99             </plugin-->
100             <!--plugin>
101                 <groupId>org.codehaus.mojo</groupId>
102                 <artifactId>findbugs-maven-plugin</artifactId>
103                 <version>2.4.0</version>
104                 <configuration>
105                     <effort>Max</effort>
106                     <threshold>Low</threshold>
107                     <goal>site</goal>
108                 </configuration>
109             </plugin-->
110         </plugins>
111     </reporting>
112
113 </project>