From c166682a081d67159473a9b6976616de22789e5b Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 16 Mar 2022 16:42:33 -0700 Subject: [PATCH] Switch testRuntime dependency scope to testRuntimeOnly in spring-session-data-geode.gradle build file. --- spring-session-data-geode/spring-session-data-geode.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-session-data-geode/spring-session-data-geode.gradle b/spring-session-data-geode/spring-session-data-geode.gradle index 58878f1..0adf3c2 100644 --- a/spring-session-data-geode/spring-session-data-geode.gradle +++ b/spring-session-data-geode/spring-session-data-geode.gradle @@ -27,8 +27,8 @@ dependencies { testImplementation "org.springframework:spring-web" - testRuntime "ch.qos.logback:logback-classic" - testRuntime "org.apache.logging.log4j:log4j-to-slf4j" + testRuntimeOnly "ch.qos.logback:logback-classic" + testRuntimeOnly "org.apache.logging.log4j:log4j-to-slf4j" integrationTestCompile "com.google.code.findbugs:jsr305:$findbugsVersion"