15 lines
460 B
Groovy
15 lines
460 B
Groovy
group = 'us.runelitepl.rs'
|
|
description = 'RuneScape Client'
|
|
|
|
dependencies {
|
|
implementation project(':runescape-api')
|
|
|
|
testImplementation group: 'junit', name: 'junit', version: junit
|
|
testImplementation group: 'org.slf4j', name: 'slf4j-api', version: slf4j
|
|
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: slf4j
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs.addAll('-g:source,vars,lines', '-Xlint:-unchecked')
|
|
}
|