You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/11/01 12:40:43 UTC

[maven-surefire] branch master updated: '--no-transfer-progress' for 3.6.1+ builds

This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/master by this push:
     new 254cce6  '--no-transfer-progress' for 3.6.1+ builds
254cce6 is described below

commit 254cce641fc8a26970c28f300d92d74f46aba5c6
Author: tibordigana <ti...@apache.org>
AuthorDate: Fri Nov 1 13:40:31 2019 +0100

    '--no-transfer-progress' for 3.6.1+ builds
---
 Jenkinsfile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0ddbee3..80048ff 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -69,7 +69,10 @@ oses.eachWithIndex { osMapping, indexOfOs ->
                         def failsafeItPort = 8000 + 100 * indexOfMaven + 10 * indexOfJdk
                         def allOptions = options + ['-Djava.awt.headless=true', "-Dfailsafe-integration-test-port=${failsafeItPort}", "-Dfailsafe-integration-test-stop-port=${1 + failsafeItPort}"]
                         if (jdk == 7) {
-                            allOptions += ['-Dhttps.protocols=TLSv1.2']
+                            allOptions += '-Dhttps.protocols=TLSv1.2'
+                        }
+                        if (!maven.startsWith('3.2') && !maven.startsWith('3.3') && !maven.startsWith('3.5')) {
+                            allOptions += '--no-transfer-progress'
                         }
                         ws(dir: "${os == 'windows' ? "${TEMP}\\${BUILD_TAG}" : pwd()}") {
                             buildProcess(stageKey, jdkName, jdkTestName, mvnName, first ? goalsDepl : goals, allOptions, mavenOpts, first)