mirror of
https://github.com/runelite/plugin-hub.git
synced 2025-12-23 22:48:49 -05:00
33 lines
696 B
Groovy
33 lines
696 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven {
|
|
url = 'https://repo.runelite.net'
|
|
}
|
|
mavenCentral()
|
|
}
|
|
|
|
def runeLiteVersion = 'latest.release'
|
|
|
|
dependencies {
|
|
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.30'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.30'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation group: 'net.runelite', name:'client', version: runeLiteVersion
|
|
testImplementation group: 'net.runelite', name:'jshell', version: runeLiteVersion
|
|
}
|
|
|
|
group = '${group_id}'
|
|
version = '${version}'
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = 'UTF-8'
|
|
options.release.set(11)
|
|
}
|