mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-07-13 02:15:46 +00:00
18 lines
375 B
Groovy
18 lines
375 B
Groovy
group = 'art.arcane'
|
|
version = rootProject.version
|
|
|
|
dependencies {
|
|
implementation(project(':spi'))
|
|
}
|
|
|
|
processResources {
|
|
inputs.property('version', project.version)
|
|
filesMatching('META-INF/mods.toml') {
|
|
expand('version': project.version)
|
|
}
|
|
}
|
|
|
|
tasks.named('jar', Jar).configure {
|
|
archiveFileName.set("Iris-${project.version}-forge-skeleton.jar")
|
|
}
|