Arclight/build.gradle
IzzelAliz 81b5b4812a Implement plugin class cache
Plugins are expected to load faster on second run.
2021-04-20 19:49:51 +08:00

23 lines
434 B
Groovy

allprojects {
group 'io.izzel.arclight'
version '1.0.18-SNAPSHOT'
ext {
agpVersion = '1.15'
minecraftVersion = '1.16.5'
forgeVersion = '36.1.4'
}
task cleanBuild {
doFirst {
project.file("build/libs").deleteDir()
}
}
}
task collect(type: Copy) {
destinationDir = file('build/libs')
subprojects.each { p ->
from p.file('build/libs')
}
}