Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2019-02-26 15:09:17 +0000
committerDani Megert2019-02-26 15:09:17 +0000
commitaf96baadd1f1232f3df8eeaa8650d633af1d9852 (patch)
treedf933c0598309dbe14c171fe52e26b30f8c4fb87
parent65f10c42060209817eaf85b477d11e0beb76b2e9 (diff)
downloadeclipse.platform.releng.aggregator-af96baadd1f1232f3df8eeaa8650d633af1d9852.tar.gz
eclipse.platform.releng.aggregator-af96baadd1f1232f3df8eeaa8650d633af1d9852.tar.xz
eclipse.platform.releng.aggregator-af96baadd1f1232f3df8eeaa8650d633af1d9852.zip
Fixed bug 544823: Timeout while jar signing caused I20190226-0600 and I20190226-0715 I-build failure
-rw-r--r--eclipse-platform-parent/pom.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 51ef7e73b..91a8f8631 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -691,10 +691,11 @@
<configuration>
<excludeInnerJars>${defaultSigning-excludeInnerJars}</excludeInnerJars>
<!--
- The default timeout is 5 seconds which is not sufficient for some of the jars like swt native jars
- So using a time out of 10 seconds see bug 507369
+ The default timeout is 0 seconds which means "wait forever": https://www.eclipse.org/cbi/sitedocs/eclipse-jarsigner-plugin/sign-mojo.html#timeoutMillis
+ We don't want to wait until the build finally aborts, so, setting a timeout (see bug 507369).
+ Increasing timeout from 60000 to 120000 (see bug 544823).
-->
- <timeoutMillis>60000</timeoutMillis>
+ <timeoutMillis>120000</timeoutMillis>
</configuration>
</plugin>
<plugin>

Back to the top