mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-08-27 04:37:47 +00:00
Restructure into cross-platform monorepo: spi module, adapters tree, buildAll
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
}
|
||||
|
||||
group = 'art.arcane'
|
||||
version = rootProject.version
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(25)
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(':spi'))
|
||||
}
|
||||
|
||||
processResources {
|
||||
inputs.property('version', project.version)
|
||||
filesMatching('fabric.mod.json') {
|
||||
expand('version': project.version)
|
||||
}
|
||||
}
|
||||
|
||||
tasks.named('jar', Jar).configure {
|
||||
archiveFileName.set("Iris-${project.version}-fabric-skeleton.jar")
|
||||
}
|
||||
Reference in New Issue
Block a user