This commit is contained in:
Brian Neumann-Fopiano
2026-07-16 12:26:01 -04:00
parent 55b7460b9a
commit 699247b1de
327 changed files with 30138 additions and 3934 deletions
+6 -1
View File
@@ -17,6 +17,9 @@ dependencies {
implementation(project(':core'))
compileOnly(libs.spigot)
testImplementation('junit:junit:4.13.2')
testImplementation(volmLibCoordinate) {
transitive = false
}
compileOnly(volmLibCoordinate) {
transitive = false
}
@@ -50,6 +53,8 @@ String probePack = providers.gradleProperty('probePack')
.orElse('/Users/brianfopiano/Developer/RemoteGit/[Minecraft Server]/consumers/plugin-consumers/instances/purpur-26.2/plugins/Iris/packs/overworld')
.get()
String probeRadius = providers.gradleProperty('probeRadius').orElse('2').get()
String probeCenterChunkX = providers.gradleProperty('probeCenterChunkX').orElse('0').get()
String probeCenterChunkZ = providers.gradleProperty('probeCenterChunkZ').orElse('0').get()
tasks.register('genProbe', JavaExec) {
group = 'verification'
@@ -57,7 +62,7 @@ tasks.register('genProbe', JavaExec) {
mainClass = 'art.arcane.iris.probe.GenerationProbe'
classpath = sourceSets.main.runtimeClasspath
jvmArgs('--add-modules', 'jdk.incubator.vector')
args(probePack, probeRadius)
args(probePack, probeRadius, probeCenterChunkX, probeCenterChunkZ)
dependsOn(':core:compileJava')
}