gradle: Remove deprecated methods

This commit is contained in:
Owain van Brakel
2019-07-27 06:26:59 +02:00
parent d8ddfa9110
commit 8d1489254f
18 changed files with 161 additions and 146 deletions

View File

@@ -1,9 +1,9 @@
description = 'Protocol API'
dependencies {
compile project(':runelite-api')
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.26'
compile group: 'com.google.guava', name: 'guava', version: '28.0-jre'
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation project(':runelite-api')
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.26'
implementation group: 'com.google.guava', name: 'guava', version: '28.0-jre'
testImplementation group: 'junit', name: 'junit', version: '4.12'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
}