-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
build.gradle
57 lines (50 loc) · 1.47 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import io.izzel.arclight.gradle.tasks.UploadFilesTask
allprojects {
group 'io.izzel.arclight'
version '1.0.6-SNAPSHOT'
def getGitHash = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-parse', '--short', 'HEAD'
standardOutput = stdout
}
return stdout.toString().trim()
}
ext {
agpVersion = '1.23'
minecraftVersion = '1.20.1'
forgeVersion = '47.3.12'
apiVersion = '1.5.4'
toolsVersion = '1.3.0'
mixinVersion = '0.8.5'
versionName = 'trials'
gitHash = getGitHash()
}
task cleanBuild {
doFirst {
project.file("build/libs").deleteDir()
}
}
}
task collect(type: Copy) {
destinationDir = file('build/libs')
from { project(':arclight-forge').tasks.jar.outputs }
dependsOn { project(':arclight-forge').tasks.jar }
}
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)
}