From eeae96a41893fdce71f2ecbd866e37f2f45068b5 Mon Sep 17 00:00:00 2001 From: Aleksandar Kurtakov Date: Tue, 6 May 2025 09:35:41 +0300 Subject: [PATCH] Fix surefire warnings in build Remove the override in jenkinsfile so the default is not overriden. Fixes following warnings in the build: ``` [WARNING] useSystemClassLoader setting has no effect when not forking [WARNING] The parameter forkCount should likely not be 0. Forking a JVM for tests improves test accuracy. Ensure to have a >= 1. ``` --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 21eea26b204..23b8db236a3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -350,7 +350,7 @@ pipeline { dir('eclipse.platform.swt') { sh ''' mvn clean verify \ - --batch-mode --threads 1C -V -U -e -DforkCount=0 \ + --batch-mode --threads 1C -V -U -e \ -Pbree-libs -Papi-check -Pjavadoc \ -Dcompare-version-with-baselines.skip=false \ -Dorg.eclipse.swt.tests.junit.disable.test_isLocal=true \