Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-08-19 17:52:05 +0000
committerMarkus Keller2015-08-19 17:52:05 +0000
commitb0c6c38e9793009d7b18ca08df919788fb9473c9 (patch)
tree4566273c8b83918089ecc69809651d3aea2b0659
parent43269564691d3f443f31cf0d1eb9c1cbac8e9f8d (diff)
downloadeclipse.jdt.ui-b0c6c38e9793009d7b18ca08df919788fb9473c9.tar.gz
eclipse.jdt.ui-b0c6c38e9793009d7b18ca08df919788fb9473c9.tar.xz
eclipse.jdt.ui-b0c6c38e9793009d7b18ca08df919788fb9473c9.zip
Bug 471835: Build succeeds, even when "old" parent pom is referred toI20150825-0800
-rw-r--r--pom.xml34
1 files changed, 22 insertions, 12 deletions
diff --git a/pom.xml b/pom.xml
index ef1169cb5d..5750402b06 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,18 +28,28 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/jdt/eclipse.jdt.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>org.eclipse.ltk.core.refactoring</module>

Back to the top