From 244269644d10261cba0ed4c503d8febd406d00ca Mon Sep 17 00:00:00 2001 From: "Ansgar [Hiajen]" Date: Sat, 11 Dec 2021 15:51:09 +0100 Subject: [PATCH] edit gradle deprecated functions to run with gradle 7 --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index cf5380a..3b59dc2 100644 --- a/build.gradle +++ b/build.gradle @@ -26,12 +26,12 @@ repositories { } dependencies { - compile "net.dv8tion:JDA:$jdaVersion" - compile group: 'com.googlecode.json-simple', name: 'json-simple', version: jsonsimpleVersion - compile group: 'joda-time', name: 'joda-time', version: jodatimeVersion - compile group: 'org.slf4j', name: 'slf4j-api', version: self4JVersion - compile group: 'org.slf4j', name: 'slf4j-jdk14', version: self4JVersion - compile group: 'com.cedarsoftware', name: 'json-io', version: JSON + implementation "net.dv8tion:JDA:$jdaVersion" + implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: jsonsimpleVersion + implementation group: 'joda-time', name: 'joda-time', version: jodatimeVersion + implementation group: 'org.slf4j', name: 'slf4j-api', version: self4JVersion + implementation group: 'org.slf4j', name: 'slf4j-jdk14', version: self4JVersion + implementation group: 'com.cedarsoftware', name: 'json-io', version: JSON } //create a single Jar with all dependencies