Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-02-10 10:28:47 +0000
committerAlexander Kurtakov2017-02-10 10:31:52 +0000
commitec31ce2839b307d68448890bb67c7e9565ec10fb (patch)
treefc1e434b235ca015c68e383932470b0845b0661c /pom.xml
parent2bd49524b95674eebc0433e906f377ad339c8103 (diff)
downloadeclipse.platform.releng.aggregator-ec31ce2839b307d68448890bb67c7e9565ec10fb.tar.gz
eclipse.platform.releng.aggregator-ec31ce2839b307d68448890bb67c7e9565ec10fb.tar.xz
eclipse.platform.releng.aggregator-ec31ce2839b307d68448890bb67c7e9565ec10fb.zip
Bug 502962 - Activate build-individual-bundles profile automatically
The only case when bulid-individual-bundles shouldn't be enables is when doing aggregator build (aka full build). For any other place to start building some module one needs this profile enabled as otherwise the build fails with resolution problems. It would also happen new comers who will be able to clone e.g. platform.ui git repo and 'mvn clean verify' will work instead of the current situation where one has to find out the magical -Pbuild-individual-bundles to make it work. Change-Id: I714e3de04f0493692a5814ec934cb224ec6db7af Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 651bdc5c8..d836dac5f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2014 Eclipse Foundation.
+ Copyright (c) 2012, 2017 Eclipse Foundation.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -20,6 +20,10 @@
<artifactId>platform-aggregator</artifactId>
<version>4.7.0-SNAPSHOT</version>
<packaging>pom</packaging>
+ <properties>
+ <!--Property used in parent pom which if defined disables activation of build-individual-bundles profile -->
+ <aggregatorBuild>true</aggregatorBuild>
+ </properties>
<modules>

Back to the top