edit gradle deprecated functions to run with gradle 7
This commit is contained in:
parent
e9c35d2e3f
commit
244269644d
1 changed files with 6 additions and 6 deletions
12
build.gradle
12
build.gradle
|
@ -26,12 +26,12 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile "net.dv8tion:JDA:$jdaVersion"
|
implementation "net.dv8tion:JDA:$jdaVersion"
|
||||||
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: jsonsimpleVersion
|
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: jsonsimpleVersion
|
||||||
compile group: 'joda-time', name: 'joda-time', version: jodatimeVersion
|
implementation group: 'joda-time', name: 'joda-time', version: jodatimeVersion
|
||||||
compile group: 'org.slf4j', name: 'slf4j-api', version: self4JVersion
|
implementation group: 'org.slf4j', name: 'slf4j-api', version: self4JVersion
|
||||||
compile group: 'org.slf4j', name: 'slf4j-jdk14', version: self4JVersion
|
implementation group: 'org.slf4j', name: 'slf4j-jdk14', version: self4JVersion
|
||||||
compile group: 'com.cedarsoftware', name: 'json-io', version: JSON
|
implementation group: 'com.cedarsoftware', name: 'json-io', version: JSON
|
||||||
}
|
}
|
||||||
|
|
||||||
//create a single Jar with all dependencies
|
//create a single Jar with all dependencies
|
||||||
|
|
Loading…
Reference in a new issue