Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-12-15 13:06:54 +0000
committerMarkus Keller2016-12-15 17:51:00 +0000
commit906d818ee82273a3c8366a3d9a05ba6bf01f3a3f (patch)
tree1e31de4bd1e9694c1452ff5a988cd30a0da8dcd0 /eclipse-platform-parent/pom.xml
parent5b956b5cb5fd0747050cb49f2bc20e765b118219 (diff)
downloadeclipse.platform.releng.aggregator-906d818ee82273a3c8366a3d9a05ba6bf01f3a3f.tar.gz
eclipse.platform.releng.aggregator-906d818ee82273a3c8366a3d9a05ba6bf01f3a3f.tar.xz
eclipse.platform.releng.aggregator-906d818ee82273a3c8366a3d9a05ba6bf01f3a3f.zip
Bug 484000: Occasional Build failure due to "Could not determine installation size of file"
organized comments about tycho-snapshot-repo and removed outdated stuff
Diffstat (limited to 'eclipse-platform-parent/pom.xml')
-rw-r--r--eclipse-platform-parent/pom.xml33
1 files changed, 16 insertions, 17 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 544837df5..6eaddcf24 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -67,8 +67,16 @@
<releaseNumberPlatform>4.7</releaseNumberPlatform>
- <tycho.version>0.27.0-SNAPSHOT</tycho.version>
- <tycho-extras.version>0.27.0-SNAPSHOT</tycho-extras.version>
+ <!-- Using snapshot, or locally built (forked) snapshot version for bug 484000.
+ Need to enable the tycho-snapshot-repo in <pluginRepositories> further down!
+ -->
+ <tycho.version>0.27.0-SNAPSHOT</tycho.version>
+ <tycho-extras.version>0.27.0-SNAPSHOT</tycho-extras.version>
+
+ <!-- using released version (normal case)
+ <tycho.version>0.26.0</tycho.version>
+ <tycho-extras.version>0.26.0</tycho-extras.version>
+ -->
<cbi-plugins.version>1.1.4-SNAPSHOT</cbi-plugins.version>
@@ -91,12 +99,9 @@
<ecf-repo.url>http://download.eclipse.org/rt/ecf/3.13.1/site.p2/</ecf-repo.url>
- <!-- using snapshot repo for Tycho 0.27.0-SNAPSHOT, such as for bug 461207 -->
+ <!-- only used when Tycho snapshot repo is enabled in <pluginRepositories> further down -->
<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>
- -->
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cbi-jdt-repo.url>https://repo.eclipse.org/content/repositories/eclipse-staging/</cbi-jdt-repo.url>
<!-- jdt.core and jdt.compiler.apt should "match", come from same build, and be signed
@@ -171,17 +176,11 @@
</distributionManagement>
<pluginRepositories>
- <!-- only for staged Tycho builds
- <pluginRepository>
- <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.
--->
+ <!-- Released Tycho versions are available on maven central, which is now mirrored to Eclipse.org.
+ The tycho-snapshot-repo is only needed when using snapshots.
+ -->
<pluginRepository>
- <id>tycho</id>
+ <id>tycho-snapshots</id>
<url>${tycho-snapshot-repo.url}</url>
<releases>
<enabled>true</enabled>

Back to the top