From 96c1120194cabccdff456c6cc5913de635f0c481 Mon Sep 17 00:00:00 2001 From: LankyDan Date: Mon, 4 May 2020 14:08:38 +0100 Subject: [PATCH] NOTICK Update byteman dependencies Tests that were using byteman when running on Java 11 were failing. Updating the byteman version fixed the issue while still working on Java 8. --- node/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/build.gradle b/node/build.gradle index d1d7f59944..ae98903907 100644 --- a/node/build.gradle +++ b/node/build.gradle @@ -225,9 +225,9 @@ dependencies { // Byteman for runtime (termination) rules injection on the running node // Submission tool allowing to install rules on running nodes - slowIntegrationTestCompile "org.jboss.byteman:byteman-submit:4.0.3" + slowIntegrationTestCompile "org.jboss.byteman:byteman-submit:4.0.11" // The actual Byteman agent which should only be in the classpath of the out of process nodes - slowIntegrationTestCompile "org.jboss.byteman:byteman:4.0.3" + slowIntegrationTestCompile "org.jboss.byteman:byteman:4.0.11" testCompile(project(':test-cli')) testCompile(project(':test-utils'))