mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-07-19 05:13:52 +00:00
17 lines
246 B
Groovy
17 lines
246 B
Groovy
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')
|
|
}
|