This commit is contained in:
Karli
2025-10-12 21:43:27 +03:00
parent 9324c7f55c
commit ce480a1185
5 changed files with 490 additions and 115 deletions

View File

@@ -62,3 +62,11 @@ tasks.register('shadowJar', Jar) {
archiveFileName.set("${rootProject.name}-${project.version}-all.jar")
}
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'
jvmArgs '-ea'
}