Arclight/build.gradle

23 lines
434 B
Groovy
Raw Normal View History

2020-05-16 06:22:29 +00:00
allprojects {
group 'io.izzel.arclight'
2021-05-12 15:15:02 +00:00
version '1.0.19-SNAPSHOT'
2020-06-16 08:18:26 +00:00
ext {
2021-05-16 15:36:33 +00:00
agpVersion = '1.16'
2021-02-20 16:36:58 +00:00
minecraftVersion = '1.16.5'
forgeVersion = '36.1.4'
2020-06-16 08:18:26 +00:00
}
task cleanBuild {
doFirst {
2020-08-17 15:05:28 +00:00
project.file("build/libs").deleteDir()
}
}
2020-05-16 06:22:29 +00:00
}
task collect(type: Copy) {
destinationDir = file('build/libs')
subprojects.each { p ->
from p.file('build/libs')
}
}