BUG-193: shut the topology provider down correctly
[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
23     <modules>
24         <!-- Common infra -->
25         <module>concepts</module>
26         <module>framework</module>
27         <module>mockito-configuration</module>
28         <module>util</module>
29
30         <!-- Subsystems -->
31         <module>bgp</module>
32         <module>pcep</module>
33         <module>programming</module>
34         <module>rsvp</module>
35         <module>topology</module>
36
37         <!-- Integration tests -->
38         <module>integration-tests</module>
39
40         <!-- Parents -->
41         <module>commons/parent</module>
42     </modules>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.apache.maven.plugins</groupId>
48                 <artifactId>maven-javadoc-plugin</artifactId>
49                 <executions>
50                     <execution>
51                         <id>aggregate</id>
52                         <goals>
53                             <goal>aggregate</goal>
54                         </goals>
55                         <phase>site</phase>
56                     </execution>
57                 </executions>
58             </plugin>
59         </plugins>
60     </build>
61
62     <reporting>
63         <plugins>
64             <plugin>
65                 <groupId>org.apache.maven.plugins</groupId>
66                 <artifactId>maven-project-info-reports-plugin</artifactId>
67                 <version>${maven.info.reports.version}</version>
68                 <reportSets>
69                     <reportSet>
70                         <reports>
71                             <report>dependency-info</report>
72                             <report>license</report>
73                         </reports>
74                     </reportSet>
75                 </reportSets>
76             </plugin>
77             <!--plugin>
78                 <groupId>org.apache.maven.plugins</groupId>
79                 <artifactId>maven-javadoc-plugin</artifactId>
80                 <reportSets>
81                     <reportSet>
82                         <id>aggregate</id>
83                         <reports>
84                             <report>aggregate</report>
85                         </reports>
86                     </reportSet>
87                 </reportSets>
88             </plugin-->
89             <!--plugin>
90                 <groupId>org.codehaus.mojo</groupId>
91                 <artifactId>findbugs-maven-plugin</artifactId>
92                 <version>2.4.0</version>
93                 <configuration>
94                     <effort>Max</effort>
95                     <threshold>Low</threshold>
96                     <goal>site</goal>
97                 </configuration>
98             </plugin-->
99         </plugins>
100     </reporting>
101
102 </project>