Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-08-19 22:16:48 +0000
committerLars Vogel2015-08-19 22:17:10 +0000
commitc9583e8d9dd9bea9a6a778744fa40b3586c0ae82 (patch)
treed8bea4854bf845ddb09d965f134c7b8993218d3f
parentead867ad68d2b02fcb350667d56d14f06eb9c59d (diff)
downloadeclipse.pde.ui-c9583e8d9dd9bea9a6a778744fa40b3586c0ae82.tar.gz
eclipse.pde.ui-c9583e8d9dd9bea9a6a778744fa40b3586c0ae82.tar.xz
eclipse.pde.ui-c9583e8d9dd9bea9a6a778744fa40b3586c0ae82.zip
Bug 471835 - Build succeeds, even when "old" parent pom is referred to
Change-Id: I1b1a32de7a0a88adf440ceccea8c4315fefc0cab Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--pom.xml35
1 files changed, 23 insertions, 12 deletions
diff --git a/pom.xml b/pom.xml
index 1bd7a45760..54078d7249 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,6 +8,7 @@
Contributors:
Igor Fedorenko - initial implementation
+ Lars Vogel <Lars.Vogel@vogella.com> - Bug 471835
-->
<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">
<modelVersion>4.0.0</modelVersion>
@@ -28,18 +29,28 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/pde/eclipse.pde.ui.git</tycho.scmUrl>
</properties>
- <repositories>
- <repository>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <id>eclipse-hosted</id>
- <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
- </repository>
- </repositories>
+ <!--
+ To build individual bundles, we specify a repository where to find parent pom,
+ in case it is not in local maven cache already
+ and that parent pom also has fuller individual-bundle profile
+ defined that is combined with this one. -->
+ <profiles>
+ <profile>
+ <id>build-individual-bundles</id>
+ <repositories>
+ <repository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <id>eclipse-hosted</id>
+ <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
+ </repository>
+ </repositories>
+ </profile>
+ </profiles>
<modules>
<module>apitools/org.eclipse.pde.api.tools</module>

Back to the top