Restructure into cross-platform monorepo: spi module, adapters tree, buildAll

This commit is contained in:
Brian Neumann-Fopiano
2026-06-11 13:08:55 -04:00
parent a1ff3b2c55
commit 7e224325f3
31 changed files with 585 additions and 6 deletions
+16
View File
@@ -0,0 +1,16 @@
plugins {
id 'java-library'
}
group = 'art.arcane'
version = rootProject.version
java {
toolchain {
languageVersion = JavaLanguageVersion.of(25)
}
}
tasks.named('jar', Jar).configure {
archiveBaseName.set('iris-spi')
}