* gradle: Update dependencies Also made the version numbers global to make updating easier, also this way we can't have mismatches where different projects use diffrent versions of a dep * cache: Fix TitleDumper test * gradle: Format build files * httpserviceplus: Remove unneeded deps
14 lines
472 B
Groovy
14 lines
472 B
Groovy
description = 'Protocol API'
|
|
|
|
dependencies {
|
|
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: lombok
|
|
|
|
compileOnly group: 'org.projectlombok', name: 'lombok', version: lombok
|
|
|
|
implementation group: 'com.google.guava', name: 'guava', version: guava
|
|
implementation group: 'org.slf4j', name: 'slf4j-api', version: slf4j
|
|
implementation project(':runelite-api')
|
|
|
|
testImplementation group: 'junit', name: 'junit', version: junit
|
|
}
|