Bump version to 6.0.1-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>6.0.1-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>spotbugs</module>
38         <module>license</module>
39
40         <!-- Features test (SFT) -->
41         <module>bundles-test-lib</module>
42         <module>bundles4-test</module>
43         <module>features-test</module>
44
45         <!-- Karaf integration -->
46         <module>karaf</module>
47         <module>karaf-plugin</module>
48         <module>karaf-util</module>
49
50         <!-- Parent POMs -->
51         <module>bundle-parent</module>
52         <module>untested-single-feature-parent</module>
53         <module>single-feature-parent</module>
54         <module>feature-repo-parent</module>
55         <module>odlparent</module>
56         <module>odlparent-lite</module>
57
58         <!-- Manifest filtering plugin -->
59         <module>filter-manifest-plugin</module>
60
61         <!-- Features -->
62         <module>features</module>
63
64         <!-- Artifacts -->
65         <module>odlparent-artifacts</module>
66
67         <!-- Aggragated javadocs -->
68         <module>docs</module>
69
70         <!-- Self-tests -->
71         <module>odlparent-bundle-check</module>
72         <module>odlparent-dependency-check</module>
73     </modules>
74
75     <profiles>
76         <profile>
77             <!--
78                 This profile is to ensure we only build javadocs reports
79                 when we plan to deploy Maven site for our project.
80             -->
81             <id>maven-site</id>
82             <activation>
83                 <file>
84                     <exists>${user.dir}/deploy-site.xml</exists>
85                 </file>
86             </activation>
87
88             <build>
89                 <plugins>
90                     <plugin>
91                         <artifactId>maven-javadoc-plugin</artifactId>
92                         <version>3.0.1</version>
93                         <inherited>false</inherited>
94                         <executions>
95                             <execution>
96                                 <id>aggregate</id>
97                                 <goals>
98                                     <goal>aggregate</goal>
99                                 </goals>
100                                 <phase>package</phase>
101                             </execution>
102                         </executions>
103                     </plugin>
104                 </plugins>
105             </build>
106         </profile>
107         <profile>
108             <id>sonar-jacoco-aggregate</id>
109             <activation>
110                 <property>
111                     <name>odl.jacoco.aggregateFile</name>
112                 </property>
113             </activation>
114             <build>
115                 <plugins>
116                     <plugin>
117                         <groupId>org.jacoco</groupId>
118                         <artifactId>jacoco-maven-plugin</artifactId>
119                         <executions>
120                             <execution>
121                                 <id>merge</id>
122                                 <goals>
123                                     <goal>merge</goal>
124                                 </goals>
125                                 <phase>generate-resources</phase>
126                                 <configuration>
127                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
128                                     <fileSets>
129                                         <fileSet>
130                                             <directory>${project.basedir}</directory>
131                                             <includes>
132                                                 <include>**/target/code-coverage/*.exec</include>
133                                             </includes>
134                                         </fileSet>
135                                     </fileSets>
136                                 </configuration>
137                             </execution>
138                         </executions>
139                     </plugin>
140                 </plugins>
141             </build>
142         </profile>
143     </profiles>
144
145 </project>