33 lines
687 B
Groovy
33 lines
687 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven {
|
|
url = 'https://repo.runelite.net'
|
|
}
|
|
mavenCentral()
|
|
}
|
|
|
|
def runeLiteVersion = '1.8.27'
|
|
|
|
dependencies {
|
|
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.20'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.20'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation group: 'net.runelite', name:'client', version: runeLiteVersion
|
|
testImplementation group: 'net.runelite', name:'jshell', version: runeLiteVersion
|
|
}
|
|
|
|
group = 'com.toofifty'
|
|
version = '1.0.5'
|
|
sourceCompatibility = '1.8'
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = 'UTF-8'
|
|
}
|