From 35a6e7d924946657e56b77dff93695bca12c0023 Mon Sep 17 00:00:00 2001 From: Volker Berlin Date: Sat, 10 Jul 2021 22:32:08 +0200 Subject: [PATCH] compatible with Gradle 7 --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index c73cd65..2eb1622 100644 --- a/build.gradle +++ b/build.gradle @@ -22,13 +22,13 @@ dependencies { //compileOnly 'de.inetsoftware:jwebassembly-api:+' compileOnly 'com.github.i-net-software:jwebassembly-api:master-SNAPSHOT' - testCompile 'com.google.code.findbugs:jsr305:3.0.1' + testImplementation 'com.google.code.findbugs:jsr305:3.0.1' //testCompile 'de.inetsoftware:jwebassembly-api:+' - testCompile 'com.github.i-net-software:jwebassembly-api:master-SNAPSHOT' - testCompile 'junit:junit:+' - testCompile 'org.mockito:mockito-core:+' - testCompile 'org.apache.commons:commons-compress:1.2' - testCompile 'com.google.code.gson:gson:+' + testImplementation 'com.github.i-net-software:jwebassembly-api:master-SNAPSHOT' + testImplementation 'junit:junit:+' + testImplementation 'org.mockito:mockito-core:+' + testImplementation 'org.apache.commons:commons-compress:1.2' + testImplementation 'com.google.code.gson:gson:+' } sourceSets {