Mass-convert all compontents to use -no-zone addresses
[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 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>odlparent-lite</artifactId>
15         <version>6.0.4</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.bgpcep</groupId>
20     <artifactId>bgpcep-aggregator</artifactId>
21     <version>0.13.0-SNAPSHOT</version>
22     <packaging>pom</packaging>
23     <name>bgpcep</name> <!-- Used by Sonar to set project name -->
24     <description>BGPCEP top-level aggregator</description>
25
26     <modules>
27         <!-- Well-known -->
28         <module>artifacts</module>
29         <module>features</module>
30         <module>parent</module>
31
32         <!-- Utility parents -->
33         <module>binding-parent</module>
34         <module>testtool-parent</module>
35         <module>single-feature-parent</module>
36         <module>feature-repo-parent</module>
37
38         <!-- Common infra -->
39         <module>concepts</module>
40         <module>util</module>
41
42         <!-- Subsystems -->
43         <module>bgp</module>
44         <module>bmp</module>
45         <module>pcep</module>
46         <module>programming</module>
47         <module>rsvp</module>
48         <module>topology</module>
49         <module>config-loader</module>
50
51         <!--Test tools -->
52         <module>data-change-counter</module>
53         <module>testtool-util</module>
54
55         <!-- Minimal complete distribution -->
56         <module>distribution-karaf</module>
57     </modules>
58
59     <properties>
60         <maven.deploy.skip>true</maven.deploy.skip>
61         <maven.install.skip>true</maven.install.skip>
62     </properties>
63
64     <build>
65         <plugins>
66             <plugin>
67                 <groupId>org.apache.maven.plugins</groupId>
68                 <artifactId>maven-javadoc-plugin</artifactId>
69                 <executions>
70                     <execution>
71                         <id>aggregate</id>
72                         <goals>
73                             <goal>aggregate</goal>
74                         </goals>
75                         <phase>site</phase>
76                     </execution>
77                 </executions>
78             </plugin>
79         </plugins>
80     </build>
81
82     <reporting>
83         <plugins>
84             <plugin>
85                 <groupId>org.apache.maven.plugins</groupId>
86                 <artifactId>maven-project-info-reports-plugin</artifactId>
87                 <reportSets>
88                     <reportSet>
89                         <reports>
90                             <report>dependency-info</report>
91                             <report>license</report>
92                         </reports>
93                     </reportSet>
94                 </reportSets>
95             </plugin>
96         </plugins>
97     </reporting>
98
99     <profiles>
100         <profile>
101             <id>karaf</id>
102             <activation>
103                 <activeByDefault>true</activeByDefault>
104             </activation>
105
106             <modules>
107                 <module>distribution-karaf</module>
108             </modules>
109         </profile>
110         <profile>
111             <id>sonar-jacoco-aggregate</id>
112             <activation>
113                 <property>
114                     <name>odl.jacoco.aggregateFile</name>
115                 </property>
116             </activation>
117             <build>
118                 <plugins>
119                     <plugin>
120                         <groupId>org.jacoco</groupId>
121                         <artifactId>jacoco-maven-plugin</artifactId>
122                         <executions>
123                             <execution>
124                                 <id>merge</id>
125                                 <goals>
126                                     <goal>merge</goal>
127                                 </goals>
128                                 <phase>generate-resources</phase>
129                                 <configuration>
130                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
131                                     <fileSets>
132                                         <fileSet>
133                                             <directory>${project.basedir}</directory>
134                                             <includes>
135                                                 <include>**/target/code-coverage/*.exec</include>
136                                             </includes>
137                                         </fileSet>
138                                     </fileSets>
139                                 </configuration>
140                             </execution>
141                         </executions>
142                     </plugin>
143                 </plugins>
144             </build>
145         </profile>
146     </profiles>
147 </project>