Bump versions to 0.20.5-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>13.0.4</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.bgpcep</groupId>
20     <artifactId>bgpcep-aggregator</artifactId>
21     <version>0.20.5-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                 <!-- https://issues.apache.org/jira/browse/MJAVADOC-649 -->
72                 <version>3.1.1</version>
73                 <executions>
74                     <execution>
75                         <id>aggregate</id>
76                         <goals>
77                             <goal>aggregate</goal>
78                         </goals>
79                         <phase>site</phase>
80                     </execution>
81                 </executions>
82             </plugin>
83         </plugins>
84     </build>
85
86     <reporting>
87         <plugins>
88             <plugin>
89                 <groupId>org.apache.maven.plugins</groupId>
90                 <artifactId>maven-project-info-reports-plugin</artifactId>
91                 <reportSets>
92                     <reportSet>
93                         <reports>
94                             <report>dependency-info</report>
95                             <report>license</report>
96                         </reports>
97                     </reportSet>
98                 </reportSets>
99             </plugin>
100         </plugins>
101     </reporting>
102
103     <profiles>
104         <profile>
105             <id>karaf</id>
106             <activation>
107                 <activeByDefault>true</activeByDefault>
108             </activation>
109
110             <modules>
111                 <module>distribution-karaf</module>
112             </modules>
113         </profile>
114         <profile>
115             <id>sonar-jacoco-aggregate</id>
116             <activation>
117                 <property>
118                     <name>odl.jacoco.aggregateFile</name>
119                 </property>
120             </activation>
121             <build>
122                 <plugins>
123                     <plugin>
124                         <groupId>org.jacoco</groupId>
125                         <artifactId>jacoco-maven-plugin</artifactId>
126                         <executions>
127                             <execution>
128                                 <id>merge</id>
129                                 <goals>
130                                     <goal>merge</goal>
131                                 </goals>
132                                 <phase>generate-resources</phase>
133                                 <configuration>
134                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
135                                     <fileSets>
136                                         <fileSet>
137                                             <directory>${project.basedir}</directory>
138                                             <includes>
139                                                 <include>**/target/code-coverage/*.exec</include>
140                                             </includes>
141                                         </fileSet>
142                                     </fileSets>
143                                 </configuration>
144                             </execution>
145                         </executions>
146                     </plugin>
147                 </plugins>
148             </build>
149         </profile>
150     </profiles>
151 </project>