Merge "Improve debug logging to track prefixes"
[bgpcep.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <scm>
8         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
9         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
10         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
11         <tag>HEAD</tag>
12     </scm>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>commons.parent</artifactId>
16         <version>0.3.0-SNAPSHOT</version>
17         <relativePath>commons/parent</relativePath>
18     </parent>
19
20     <artifactId>releasepom</artifactId>
21     <packaging>pom</packaging>
22     <name>BGPCEP release</name>
23     <description>BGPCEP top-level pom</description>
24
25     <modules>
26         <!-- Common infra -->
27         <module>concepts</module>
28         <module>framework</module>
29         <module>mockito-configuration</module>
30         <module>util</module>
31
32         <!-- Subsystems -->
33         <module>bgp</module>
34         <module>pcep</module>
35         <module>programming</module>
36         <module>rsvp</module>
37         <module>topology</module>
38
39         <!-- Integration tests -->
40         <module>integration-tests</module>
41
42         <!-- Parents -->
43         <module>commons/parent</module>
44     </modules>
45
46     <build>
47         <plugins>
48             <plugin>
49                 <groupId>org.apache.maven.plugins</groupId>
50                 <artifactId>maven-javadoc-plugin</artifactId>
51                 <executions>
52                     <execution>
53                         <id>aggregate</id>
54                         <goals>
55                             <goal>aggregate</goal>
56                         </goals>
57                         <phase>site</phase>
58                     </execution>
59                 </executions>
60             </plugin>
61         </plugins>
62     </build>
63
64     <reporting>
65         <plugins>
66             <plugin>
67                 <groupId>org.apache.maven.plugins</groupId>
68                 <artifactId>maven-project-info-reports-plugin</artifactId>
69                 <version>${maven.info.reports.version}</version>
70                 <reportSets>
71                     <reportSet>
72                         <reports>
73                             <report>dependency-info</report>
74                             <report>license</report>
75                         </reports>
76                     </reportSet>
77                 </reportSets>
78             </plugin>
79             <!--plugin>
80                 <groupId>org.apache.maven.plugins</groupId>
81                 <artifactId>maven-javadoc-plugin</artifactId>
82                 <reportSets>
83                     <reportSet>
84                         <id>aggregate</id>
85                         <reports>
86                             <report>aggregate</report>
87                         </reports>
88                     </reportSet>
89                 </reportSets>
90             </plugin-->
91             <!--plugin>
92                 <groupId>org.codehaus.mojo</groupId>
93                 <artifactId>findbugs-maven-plugin</artifactId>
94                 <version>2.4.0</version>
95                 <configuration>
96                     <effort>Max</effort>
97                     <threshold>Low</threshold>
98                     <goal>site</goal>
99                 </configuration>
100             </plugin-->
101         </plugins>
102     </reporting>
103
104 </project>