build.gradle: rename compile -> implementation

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

View file

@ -2,8 +2,8 @@
description = 'bukkit-helper'
dependencies {
compile project(':dynmap-api')
compile project(path: ':DynmapCore', configuration: 'shadow')
compile group: 'org.bukkit', name: 'bukkit', version:'1.7.10-R0.1-SNAPSHOT'
compile group: 'com.google.code.gson', name: 'gson', version:'2.8.2'
implementation project(':dynmap-api')
implementation project(path: ':DynmapCore', configuration: 'shadow')
implementation group: 'org.bukkit', name: 'bukkit', version:'1.7.10-R0.1-SNAPSHOT'
implementation group: 'com.google.code.gson', name: 'gson', version:'2.8.2'
}