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,31 +26,31 @@
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id(Plugins.jarTest.first) version Plugins.jarTest.second
id("com.github.hauner.jarTest") version "1.0.1"
}
description = "Cache"
dependencies {
annotationProcessor(Libraries.lombok)
annotationProcessor(group = "org.projectlombok", name = "lombok", version = "1.18.12")
api(project(":http-api"))
compileOnly(Libraries.lombok)
compileOnly(group = "org.projectlombok", name = "lombok", version = "1.18.12")
implementation(Libraries.gson)
implementation(Libraries.guava)
implementation(Libraries.commonsCli)
implementation(Libraries.nettyBuffer)
implementation(Libraries.antlr)
implementation(Libraries.apacheCommonsCompress)
implementation(Libraries.slf4jApi)
implementation(group = "com.google.code.gson", name = "gson", version = "2.8.6")
implementation(group = "com.google.guava", name = "guava", version = "28.2-jre")
implementation(group = "commons-cli", name = "commons-cli", version = "1.4")
implementation(group = "io.netty", name = "netty-buffer", version = "4.1.45.Final")
implementation(group = "org.antlr", name = "antlr4-runtime", version = "4.8-1")
implementation(group = "org.apache.commons", name = "commons-compress", version = "1.20")
implementation(group = "org.slf4j", name = "slf4j-api", version = "1.7.30")
testAnnotationProcessor(Libraries.lombok)
testAnnotationProcessor(group = "org.projectlombok", name = "lombok", version = "1.18.12")
testCompileOnly(Libraries.lombok)
testCompileOnly(group = "org.projectlombok", name = "lombok", version = "1.18.12")
testImplementation(Libraries.junit)
testImplementation(group = "junit", name = "junit", version = "4.13")
testImplementation(group = "net.runelite.rs", name = "cache", version = "${ProjectVersions.cacheversion}")
}