Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-08-19 22:20:16 +0000
committerLars Vogel2015-08-19 22:21:40 +0000
commit46014c5bd11d5274722cbaedc32c86f646e0c18a (patch)
tree724496f43e71871edccde88f5e7a747522266772
parent08f49c72e8441fd91832d94f3be86ada56930a4d (diff)
downloadeclipse.pde.ui-46014c5bd11d5274722cbaedc32c86f646e0c18a.tar.gz
eclipse.pde.ui-46014c5bd11d5274722cbaedc32c86f646e0c18a.tar.xz
eclipse.pde.ui-46014c5bd11d5274722cbaedc32c86f646e0c18a.zip
Bug 471835 - Build succeeds, even when "old" parent pom is referred toM20150827-0400M20150826-1000
Updated the R4_5_maintenance branch Change-Id: I4c436cb4def7038cd15ed812dfab0b98b529d276 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--pom.xml34
1 files changed, 22 insertions, 12 deletions
diff --git a/pom.xml b/pom.xml
index fa8eb89153..4e37fd8983 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,18 +28,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