Arclight/build.gradle

23 lines
426 B
Groovy
Raw Normal View History

2020-05-16 06:22:29 +00:00
allprojects {
group 'io.izzel.arclight'
2021-03-06 12:51:18 +00:00
version '1.0.15'
2020-06-16 08:18:26 +00:00
ext {
2021-02-18 18:51:42 +00:00
agpVersion = '1.14'
2021-02-20 16:36:58 +00:00
minecraftVersion = '1.16.5'
forgeVersion = '36.0.42'
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')
}
}