This commit is contained in:
2025-10-12 22:41:10 +03:00
parent ce480a1185
commit 128173339e
89 changed files with 12846 additions and 72 deletions

View File

@@ -18,6 +18,8 @@ def runeLiteVersion = 'latest.release'
dependencies {
compileOnly group: 'net.runelite', name: 'client', version: runeLiteVersion
implementation 'org.roaringbitmap:RoaringBitmap:0.9.44'
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
@@ -26,7 +28,7 @@ dependencies {
testImplementation group: 'net.runelite', name: 'jshell', version: runeLiteVersion
}
group = 'com.toofifty'
group = 'ee.futur'
version = '1.0.11'
tasks.withType(JavaCompile).configureEach {
@@ -38,7 +40,7 @@ tasks.register('shadowJar', Jar) {
dependsOn configurations.testRuntimeClasspath
manifest {
attributes('Main-Class':
'com.toofifty.easygiantsfoundry.EasyGiantsFoundryPluginTest',
'ee.futur.easygiantsfoundry.EasyGiantsFoundryPluginTest',
'Multi-Release': true)
}
@@ -67,6 +69,6 @@ task runClient(type: JavaExec) {
group = 'application'
description = 'Run the PluginTester main class to launch RuneLite with plugins'
classpath = sourceSets.test.runtimeClasspath
mainClass = 'com.toofifty.easygiantsfoundry.EasyGiantsFoundryPluginTest'
mainClass = 'ee.futur.easygiantsfoundry.EasyGiantsFoundryPluginTest'
jvmArgs '-ea'
}