Bump versions to 0.16.12-SNAPSHOT
[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>9.0.8</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.bgpcep</groupId>
20     <artifactId>bgpcep-aggregator</artifactId>
21     <version>0.16.12-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>graph</module>
44         <module>bgp</module>
45         <module>bmp</module>
46         <module>algo</module>
47         <module>pcep</module>
48         <module>programming</module>
49         <module>rsvp</module>
50         <module>topology</module>
51         <module>config-loader</module>
52
53         <!--Test tools -->
54         <module>data-change-counter</module>
55         <module>testtool-util</module>
56
57         <!-- Minimal complete distribution -->
58         <module>distribution-karaf</module>
59     </modules>
60
61     <properties>
62         <maven.deploy.skip>true</maven.deploy.skip>
63         <maven.install.skip>true</maven.install.skip>
64     </properties>
65
66     <build>
67         <plugins>
68             <plugin>
69                 <groupId>org.apache.maven.plugins</groupId>
70                 <artifactId>maven-javadoc-plugin</artifactId>
71                 <executions>
72                     <execution>
73                         <id>aggregate</id>
74                         <goals>
75                             <goal>aggregate</goal>
76                         </goals>
77                         <phase>site</phase>
78                     </execution>
79                 </executions>
80             </plugin>
81         </plugins>
82     </build>
83
84     <reporting>
85         <plugins>
86             <plugin>
87                 <groupId>org.apache.maven.plugins</groupId>
88                 <artifactId>maven-project-info-reports-plugin</artifactId>
89                 <reportSets>
90                     <reportSet>
91                         <reports>
92                             <report>dependency-info</report>
93                             <report>license</report>
94                         </reports>
95                     </reportSet>
96                 </reportSets>
97             </plugin>
98         </plugins>
99     </reporting>
100
101     <profiles>
102         <profile>
103             <id>karaf</id>
104             <activation>
105                 <activeByDefault>true</activeByDefault>
106             </activation>
107
108             <modules>
109                 <module>distribution-karaf</module>
110             </modules>
111         </profile>
112         <profile>
113             <id>sonar-jacoco-aggregate</id>
114             <activation>
115                 <property>
116                     <name>odl.jacoco.aggregateFile</name>
117                 </property>
118             </activation>
119             <build>
120                 <plugins>
121                     <plugin>
122                         <groupId>org.jacoco</groupId>
123                         <artifactId>jacoco-maven-plugin</artifactId>
124                         <executions>
125                             <execution>
126                                 <id>merge</id>
127                                 <goals>
128                                     <goal>merge</goal>
129                                 </goals>
130                                 <phase>generate-resources</phase>
131                                 <configuration>
132                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
133                                     <fileSets>
134                                         <fileSet>
135                                             <directory>${project.basedir}</directory>
136                                             <includes>
137                                                 <include>**/target/code-coverage/*.exec</include>
138                                             </includes>
139                                         </fileSet>
140                                     </fileSets>
141                                 </configuration>
142                             </execution>
143                         </executions>
144                     </plugin>
145                 </plugins>
146             </build>
147         </profile>
148     </profiles>
149 </project>