build.gradle: rename compile -> implementation

This commit is contained in:
Kosma Moczek 2021-06-27 13:51:12 +02:00
parent ed7340befc
commit cf121956c3
22 changed files with 84 additions and 84 deletions

View file

@ -14,10 +14,10 @@ apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'com.github.johnrengelman.shadow'
dependencies {
compile project(path: ":DynmapCore", configuration: "shadow")
compile 'com.googlecode.json-simple:json-simple:1.1.1'
compile 'org.yaml:snakeyaml:1.23'
compile 'org.spongepowered:spongeapi:7.0.0'
implementation project(path: ":DynmapCore", configuration: "shadow")
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation 'org.yaml:snakeyaml:1.23'
implementation 'org.spongepowered:spongeapi:7.0.0'
}
sourceCompatibility = 1.8