-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
build.gradle.kts
74 lines (62 loc) · 1.86 KB
/
build.gradle.kts
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import java.io.ByteArrayOutputStream
// TODO UPDATE
val fullVersion = "2.6.1"
val snapshot = true
group = "com.github.retrooper"
description = rootProject.name
fun getVersionMeta(includeHash: Boolean): String {
if (!snapshot) {
return ""
}
var commitHash = ""
if (includeHash && file(".git").isDirectory) {
val stdout = ByteArrayOutputStream()
exec {
commandLine("git", "rev-parse", "--short", "HEAD")
standardOutput = stdout
}
commitHash = "+${stdout.toString().trim()}"
}
return "$commitHash-SNAPSHOT"
}
version = "$fullVersion${getVersionMeta(true)}"
ext["versionNoHash"] = "$fullVersion${getVersionMeta(false)}"
tasks {
wrapper {
gradleVersion = "8.10.2"
distributionType = Wrapper.DistributionType.ALL
}
val taskSubModules: (String) -> Array<Task> = { task ->
subprojects.filterNot { it.path == ":patch" }.map { it.tasks[task] }.toTypedArray()
}
register("build") {
dependsOn(*taskSubModules("build"))
group = "build"
doLast {
val buildOut = project.layout.buildDirectory.dir("libs").get().asFile
if (!buildOut.exists())
buildOut.mkdirs()
for (subproject in subprojects) {
if (subproject.path.startsWith(":patch")) continue
val subIn = subproject.layout.buildDirectory.dir("libs").get()
copy {
from(subIn)
into(buildOut)
}
}
}
}
register<Delete>("clean") {
dependsOn(*taskSubModules("clean"))
group = "build"
delete(rootProject.layout.buildDirectory)
}
defaultTasks("build")
}
allprojects {
tasks {
withType<Jar> {
archiveVersion = rootProject.ext["versionNoHash"] as String
}
}
}