project: Let CI handle dependencies

This commit is contained in:
Owain van Brakel
2020-04-08 17:11:17 +02:00
parent 7b9c3161b4
commit 3c1e04d147
13 changed files with 144 additions and 251 deletions

View File

@@ -26,14 +26,14 @@
description = "RuneLite API"
dependencies {
annotationProcessor(Libraries.lombok)
annotationProcessor(group = "org.projectlombok", name = "lombok", version = "1.18.12")
compileOnly(Libraries.lombok)
compileOnly(group = "org.projectlombok", name = "lombok", version = "1.18.12")
implementation(Libraries.findbugs)
implementation(Libraries.guava)
implementation(Libraries.apacheCommonsText)
implementation(Libraries.slf4jApi)
implementation(group = "com.google.code.findbugs", name = "jsr305", version = "3.0.2")
implementation(group = "com.google.guava", name = "guava", version = "28.2-jre")
implementation(group = "org.apache.commons", name = "commons-text", version = "1.8")
implementation(group = "org.slf4j", name = "slf4j-api", version = "1.7.30")
testImplementation(Libraries.junit)
testImplementation(group = "junit", name = "junit", version = "4.13")
}