Bump versions to 11.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>11.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/display/ODL/ODL+Root+Parent</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>bnd-parent</module>
52         <module>bundle-parent</module>
53         <module>abstract-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         <!-- File copying plugin -->
60         <module>copy-files-plugin</module>
61
62         <!-- Manifest filtering plugin -->
63         <module>filter-manifest-plugin</module>
64
65         <!-- Logging Markers -->
66         <module>logging-markers</module>
67
68         <!-- Features -->
69         <module>features</module>
70
71         <!-- Artifacts -->
72         <module>odlparent-artifacts</module>
73
74         <!-- Aggragated javadocs -->
75         <module>docs</module>
76
77         <!-- Self-tests -->
78         <module>odlparent-bundle-check</module>
79         <module>odlparent-dependency-check</module>
80         <module>tests</module>
81     </modules>
82
83     <profiles>
84         <profile>
85             <!--
86                 This profile is to ensure we only build javadocs reports
87                 when we plan to deploy Maven site for our project.
88             -->
89             <id>maven-site</id>
90             <activation>
91                 <file>
92                     <exists>${user.dir}/deploy-site.xml</exists>
93                 </file>
94             </activation>
95
96             <build>
97                 <plugins>
98                     <plugin>
99                         <artifactId>maven-javadoc-plugin</artifactId>
100                         <version>3.4.0</version>
101                         <inherited>false</inherited>
102                         <executions>
103                             <execution>
104                                 <id>aggregate</id>
105                                 <goals>
106                                     <goal>aggregate</goal>
107                                 </goals>
108                                 <phase>package</phase>
109                             </execution>
110                         </executions>
111                     </plugin>
112                 </plugins>
113             </build>
114         </profile>
115         <profile>
116             <id>sonar-jacoco-aggregate</id>
117             <activation>
118                 <property>
119                     <name>odl.jacoco.aggregateFile</name>
120                 </property>
121             </activation>
122             <build>
123                 <plugins>
124                     <plugin>
125                         <groupId>org.jacoco</groupId>
126                         <artifactId>jacoco-maven-plugin</artifactId>
127                         <executions>
128                             <execution>
129                                 <id>merge</id>
130                                 <goals>
131                                     <goal>merge</goal>
132                                 </goals>
133                                 <phase>generate-resources</phase>
134                                 <configuration>
135                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
136                                     <fileSets>
137                                         <fileSet>
138                                             <directory>${project.basedir}</directory>
139                                             <includes>
140                                                 <include>**/target/code-coverage/*.exec</include>
141                                             </includes>
142                                         </fileSet>
143                                     </fileSets>
144                                 </configuration>
145                             </execution>
146                         </executions>
147                     </plugin>
148                 </plugins>
149             </build>
150         </profile>
151     </profiles>
152
153 </project>