First commit of tasks-tracker-plugin-master

This commit is contained in:
2025-10-27 08:31:47 +08:00
parent b80f09a4ea
commit a5aab68ea4
121 changed files with 5353 additions and 3 deletions

View File

@@ -0,0 +1,33 @@
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
testImplementation group: 'com.squareup.okhttp3', name: 'mockwebserver', version: '3.14.9'
}
group = 'net.reldo'
version = '1.0-SNAPSHOT'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.release.set(11)
}