From 8e51e1e495d79470defae2c9877f3a8d43cb095f Mon Sep 17 00:00:00 2001 From: ghubstan <36207203+ghubstan@users.noreply.github.com> Date: Wed, 28 Oct 2020 17:21:04 -0300 Subject: [PATCH] Upgrade jupiterVersion = '5.7.0' This upgrades jupiter for all subprojects using this library, but it does not affect released code. --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 6007dd14475..57624f26fe5 100644 --- a/build.gradle +++ b/build.gradle @@ -55,7 +55,7 @@ configure(subprojects) { joptVersion = '5.0.4' jsonsimpleVersion = '1.1.1' junitVersion = '4.12' - jupiterVersion = '5.3.2' + jupiterVersion = '5.7.0' kotlinVersion = '1.3.41' knowmXchangeVersion = '4.4.2' langVersion = '3.8' @@ -658,12 +658,12 @@ configure(project(':apitest')) { compileOnly "javax.annotation:javax.annotation-api:$javaxAnnotationVersion" annotationProcessor "org.projectlombok:lombok:$lombokVersion" - testCompile "org.junit.jupiter:junit-jupiter-api:5.6.2" - testCompile "org.junit.jupiter:junit-jupiter-params:5.6.2" + testImplementation "org.junit.jupiter:junit-jupiter-api:$jupiterVersion" + testImplementation "org.junit.jupiter:junit-jupiter-params:$jupiterVersion" + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$jupiterVersion") testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion" testCompileOnly "org.projectlombok:lombok:$lombokVersion" testRuntime "javax.annotation:javax.annotation-api:$javaxAnnotationVersion" - testRuntime("org.junit.jupiter:junit-jupiter-engine:5.6.2") } }