Arclight/build.gradle

58 lines
1.5 KiB
Groovy
Raw Normal View History

2024-03-02 03:48:35 +00:00
import io.izzel.arclight.gradle.tasks.UploadFilesTask
2020-05-16 06:22:29 +00:00
allprojects {
group 'io.izzel.arclight'
2024-02-28 14:43:34 +00:00
version '1.0.6-SNAPSHOT'
def getGitHash = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-parse', '--short', 'HEAD'
standardOutput = stdout
}
return stdout.toString().trim()
}
2020-06-16 08:18:26 +00:00
ext {
agpVersion = '1.23'
2023-06-15 03:57:04 +00:00
minecraftVersion = '1.20.1'
forgeVersion = '47.3.5'
apiVersion = '1.5.4'
2022-10-25 11:57:59 +00:00
toolsVersion = '1.3.0'
mixinVersion = '0.8.5'
2023-06-08 09:18:00 +00:00
versionName = 'trials'
gitHash = getGitHash()
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')
2024-03-02 03:48:35 +00:00
from { project(':arclight-forge').tasks.jar.outputs }
2023-06-08 10:21:03 +00:00
dependsOn { project(':arclight-forge').tasks.jar }
}
2024-03-02 03:48:35 +00:00
def gitBranch() {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-parse', '--abbrev-ref', 'HEAD'
standardOutput = stdout
}
return stdout.toString().trim()
}
tasks.register('uploadFiles', UploadFilesTask) {
mcVersion.set project.ext.minecraftVersion
version.set "${project.version}-${project.ext.gitHash}"
snapshot.set project.version.toString().endsWith("-SNAPSHOT")
gitHash.set project.ext.gitHash
branch.set gitBranch()
inputs.files tasks.collect.outputs.files
dependsOn(tasks.collect)
}