Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2016-12-15 12:00:37 +0000
committerSravan Kumar Lakkimsetti2016-12-15 12:00:37 +0000
commita1ca4a4d3e30b330de03bff7aca9f3120eeb8b5c (patch)
tree2ab0ba5d4be56f3766c862c9edffeb12a648f30c
parent58ad4d04c5efd5e6f496e74fc83407340dde4b7f (diff)
downloadeclipse.platform.releng.aggregator-a1ca4a4d3e30b330de03bff7aca9f3120eeb8b5c.tar.gz
eclipse.platform.releng.aggregator-a1ca4a4d3e30b330de03bff7aca9f3120eeb8b5c.tar.xz
eclipse.platform.releng.aggregator-a1ca4a4d3e30b330de03bff7aca9f3120eeb8b5c.zip
Bug 484000 - Occasional Build failure due to "Could not determine
installation size of file" Change-Id: I22a0ff358f531eec2f6ff172d9aa3f25a6555f27 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--eclipse-platform-parent/pom.xml21
-rwxr-xr-xproduction/build-functions.shsource2
2 files changed, 8 insertions, 15 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index fe3adc2b4..544837df5 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -66,13 +66,9 @@
<releaseNumberSDK>4.7</releaseNumberSDK>
<releaseNumberPlatform>4.7</releaseNumberPlatform>
- <!-- using snapshot, or locally built (forked) snapshot version for bug 461207 and bug 431116
- <tycho.version>0.23.0-SNAPSHOT</tycho.version>
- <tycho-extras.version>0.23.0-SNAPSHOT</tycho-extras.version>
- -->
- <tycho.version>0.26.0</tycho.version>
- <tycho-extras.version>0.26.0</tycho-extras.version>
+ <tycho.version>0.27.0-SNAPSHOT</tycho.version>
+ <tycho-extras.version>0.27.0-SNAPSHOT</tycho-extras.version>
<cbi-plugins.version>1.1.4-SNAPSHOT</cbi-plugins.version>
@@ -95,10 +91,8 @@
<ecf-repo.url>http://download.eclipse.org/rt/ecf/3.13.1/site.p2/</ecf-repo.url>
- <!-- using snapshot repo for Tycho 0.23.0-SNAPSHOT, such as for bug 461207 -->
- <!-- Does it hurt to always leave snapshot repo here? Even if not used?
- <tycho-snapshot-repo.url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</tycho-snapshot-repo.url>
- -->
+ <!-- using snapshot repo for Tycho 0.27.0-SNAPSHOT, such as for bug 461207 -->
+ <tycho-snapshot-repo.url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</tycho-snapshot-repo.url>
<!-- No need to specify sonatype URL for "Tycho". released versions available on maven central,
which is now mirrored to Eclipse.org.
<tycho-repo.url>https://oss.sonatype.org/content/repositories/public/</tycho-repo.url>
@@ -182,14 +176,13 @@
<id>tycho-0.25.0-staged</id>
<url>https://oss.sonatype.org/content/repositories/orgeclipsetycho-1036/</url>
</pluginRepository>
--->
-<!--
No need to specify sonatype URL for "Tycho". released versions available on maven central,
which is now mirrored to Eclipse.org.
Only need if using snapshots.
+-->
<pluginRepository>
<id>tycho</id>
- <url>${tycho-repo.url}</url>
+ <url>${tycho-snapshot-repo.url}</url>
<releases>
<enabled>true</enabled>
</releases>
@@ -197,7 +190,7 @@ No need to specify sonatype URL for "Tycho". released versions available on mave
<enabled>true</enabled>
</snapshots>
</pluginRepository>
- -->
+
<pluginRepository>
<id>cbi-jdt</id>
<url>${cbi-jdt-repo.url}</url>
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index 0e4683afd..927adf90e 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -606,7 +606,7 @@ fn-pom-version-updater ()
report=${TMP_DIR}/pom_${BUILD_ID}.txt
pushd "$REPO_DIR"
mvn ${MAVEN_SETTINGS} $MARGS ${ALT_POM_FILE} \
- org.eclipse.tycho:tycho-versions-plugin:0.26.0:update-pom \
+ org.eclipse.tycho:tycho-versions-plugin:0.27.0-SNAPSHOT:update-pom \
-Dmaven.repo.local=$LOCAL_REPO \
-DbuildTimestamp="${TIMESTAMP}" -DbuildType="${BUILD_TYPE}" -DbuildId="${BUILD_ID}" -Declipse-p2-repo.url="NOT_FOR_PRODUCTION_USE"
RC=$?

Back to the top