Bump versions to 5.0.0-SNAPSHOT
[odlparent.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3  Copyright (c) 2014, 2015 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 --><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">
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>odlparent-lite</artifactId>
14         <version>5.0.0-SNAPSHOT</version>
15         <relativePath>odlparent-lite</relativePath>
16     </parent>
17
18     <artifactId>odlparent-aggregator</artifactId>
19     <name>odlparent</name> <!-- Used by Sonar to set project name -->
20     <packaging>pom</packaging>
21
22     <scm>
23         <connection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</connection>
24         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</developerConnection>
25         <tag>HEAD</tag>
26         <url>https://wiki.opendaylight.org/view/ODL_Root_Parent:Main</url>
27     </scm>
28
29     <properties>
30         <maven.deploy.skip>true</maven.deploy.skip>
31         <maven.install.skip>true</maven.install.skip>
32     </properties>
33
34     <modules>
35         <!-- odlparent tools -->
36         <module>checkstyle</module>
37         <module>findbugs</module>
38         <module>spotbugs</module>
39         <module>license</module>
40
41         <!-- Features test (SFT) -->
42         <module>bundles-test-lib</module>
43         <module>bundles4-test</module>
44         <module>features-test</module>
45
46         <!-- Karaf integration -->
47         <module>karaf</module>
48         <module>karaf-plugin</module>
49         <module>karaf-util</module>
50
51         <!-- Parent POMs -->
52         <module>bundle-parent</module>
53         <module>untested-single-feature-parent</module>
54         <module>single-feature-parent</module>
55         <module>feature-repo-parent</module>
56         <module>odlparent</module>
57         <module>odlparent-lite</module>
58
59         <!-- Manifest filtering plugin -->
60         <module>filter-manifest-plugin</module>
61
62         <!-- Features -->
63         <module>features</module>
64
65         <!-- Artifacts -->
66         <module>odlparent-artifacts</module>
67
68         <!-- Self-tests -->
69         <module>odlparent-bundle-check</module>
70         <module>odlparent-dependency-check</module>
71     </modules>
72
73     <profiles>
74         <profile>
75             <!--
76                 This profile is to ensure we only build javadocs reports
77                 when we plan to deploy Maven site for our project.
78             -->
79             <id>maven-site</id>
80             <activation>
81                 <file>
82                     <exists>${user.dir}/deploy-site.xml</exists>
83                 </file>
84             </activation>
85
86             <build>
87                 <plugins>
88                     <plugin>
89                         <artifactId>maven-javadoc-plugin</artifactId>
90                         <version>3.0.1</version>
91                         <inherited>false</inherited>
92                         <executions>
93                             <execution>
94                                 <id>aggregate</id>
95                                 <goals>
96                                     <goal>aggregate</goal>
97                                 </goals>
98                                 <phase>package</phase>
99                             </execution>
100                         </executions>
101                     </plugin>
102                 </plugins>
103             </build>
104         </profile>
105         <profile>
106             <id>sonar-jacoco-aggregate</id>
107             <activation>
108                 <property>
109                     <name>odl.jacoco.aggregateFile</name>
110                 </property>
111             </activation>
112             <build>
113                 <plugins>
114                     <plugin>
115                         <groupId>org.jacoco</groupId>
116                         <artifactId>jacoco-maven-plugin</artifactId>
117                         <executions>
118                             <execution>
119                                 <id>merge</id>
120                                 <goals>
121                                     <goal>merge</goal>
122                                 </goals>
123                                 <phase>generate-resources</phase>
124                                 <configuration>
125                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
126                                     <fileSets>
127                                         <fileSet>
128                                             <directory>${project.basedir}</directory>
129                                             <includes>
130                                                 <include>**/target/code-coverage/*.exec</include>
131                                             </includes>
132                                         </fileSet>
133                                     </fileSets>
134                                 </configuration>
135                             </execution>
136                         </executions>
137                     </plugin>
138                 </plugins>
139             </build>
140         </profile>
141     </profiles>
142
143 </project>