From 3a84d492f976d3dd9d7ea6169afd8fe3635899ed Mon Sep 17 00:00:00 2001 From: Bruce Eckel Date: Tue, 7 Sep 2021 14:06:38 -0600 Subject: [PATCH] Changed from old "compile" to new "implementation" Worked successfully with Gradle 6.8.1 and JDK11 --- gradle/java.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gradle/java.gradle b/gradle/java.gradle index eadc4ef9..99898c1d 100644 --- a/gradle/java.gradle +++ b/gradle/java.gradle @@ -18,7 +18,7 @@ sourceSets { include '*.xml' } } - + test { java { srcDir file("tests") @@ -32,8 +32,8 @@ repositories { dependencies { // Logging: - compile 'org.slf4j:slf4j-api:1.7.21' - compile 'ch.qos.logback:logback-classic:1.1.7' + implementation 'org.slf4j:slf4j-api:1.7.21' + implementation 'ch.qos.logback:logback-classic:1.1.7' // You can also use the JDK's built-in logging as the back end: // compile group: 'org.slf4j:slf4j-jdk14:1.7.21' -} \ No newline at end of file +}