23 lines
1.1 KiB
Groovy
23 lines
1.1 KiB
Groovy
description = 'Cache'
|
|
dependencies {
|
|
compile project(':http-api')
|
|
compile group: 'com.google.guava', name: 'guava', version: '28.0-jre'
|
|
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
|
|
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.18'
|
|
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
|
|
compile group: 'io.netty', name: 'netty-buffer', version: '4.1.37.Final'
|
|
compile group: 'org.antlr', name: 'antlr4-runtime', version: '4.6'
|
|
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.26'
|
|
testCompile group: 'net.runelite.rs', name: 'cache', version: '165'
|
|
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
|
|
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
|
|
}
|
|
|
|
task packageTests(type: Jar) {
|
|
from sourceSets.test.output
|
|
classifier = 'tests'
|
|
}
|
|
artifacts.archives packageTests
|