Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse-platform-parent/pom.xml')
-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