BUG-612 : switched PCEP message parsing to ByteBuf.
[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     </modules>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.apache.maven.plugins</groupId>
56                 <artifactId>maven-javadoc-plugin</artifactId>
57                 <executions>
58                     <execution>
59                         <id>aggregate</id>
60                         <goals>
61                             <goal>aggregate</goal>
62                         </goals>
63                         <phase>site</phase>
64                     </execution>
65                 </executions>
66             </plugin>
67         </plugins>
68     </build>
69
70     <reporting>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.maven.plugins</groupId>
74                 <artifactId>maven-project-info-reports-plugin</artifactId>
75                 <version>${maven.info.reports.version}</version>
76                 <reportSets>
77                     <reportSet>
78                         <reports>
79                             <report>dependency-info</report>
80                             <report>license</report>
81                         </reports>
82                     </reportSet>
83                 </reportSets>
84             </plugin>
85             <!--plugin>
86                 <groupId>org.apache.maven.plugins</groupId>
87                 <artifactId>maven-javadoc-plugin</artifactId>
88                 <reportSets>
89                     <reportSet>
90                         <id>aggregate</id>
91                         <reports>
92                             <report>aggregate</report>
93                         </reports>
94                     </reportSet>
95                 </reportSets>
96             </plugin-->
97             <!--plugin>
98                 <groupId>org.codehaus.mojo</groupId>
99                 <artifactId>findbugs-maven-plugin</artifactId>
100                 <version>2.4.0</version>
101                 <configuration>
102                     <effort>Max</effort>
103                     <threshold>Low</threshold>
104                     <goal>site</goal>
105                 </configuration>
106             </plugin-->
107         </plugins>
108     </reporting>
109
110 </project>