This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 09cce57 Jenkinsfile use adoptopenjdk instead of oracle 09cce57 is described below commit 09cce5781d33aecee9107b7152e1aaf81abf2ca0 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Feb 8 14:35:17 2021 +0100 Jenkinsfile use adoptopenjdk instead of oracle --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 641735f..67bf6a9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ */ def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu' -def JDK_NAME = env.JDK_NAME ?: 'jdk_1.8_latest' +def JDK_NAME = env.JDK_NAME ?: 'adoptopenjdk_hotspot_8u282' def MAVEN_PARAMS = "-U -B -e -fae -V -Dnoassembly -Dmaven.compiler.fork=true -Dsurefire.rerunFailingTestsCount=2"