-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle.kts
73 lines (63 loc) · 2.02 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
import java.io.ByteArrayOutputStream
val fullVersion = "3.0.3"
val snapshot = true
group = "me.tofaa.entitylib"
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["versionBeta"] = getVersionMeta(true)
ext["versionNoHash"] = "$fullVersion${getVersionMeta(false)}"
tasks {
wrapper {
gradleVersion = "8.8"
distributionType = Wrapper.DistributionType.ALL
}
fun subModuleTasks(taskName: String): List<Task> {
return subprojects
.filter { it.name != "platforms" }
.mapNotNull { it.tasks.findByName(taskName) }
}
register("build") {
val subModuleBuildTasks = subModuleTasks("build")
dependsOn(subModuleBuildTasks)
group = "build"
doLast {
val buildOut = project.layout.buildDirectory.dir("libs").get().asFile.apply {
if (!exists()) mkdirs()
}
subprojects.forEach { subproject ->
val subIn = subproject.layout.buildDirectory.dir("libs").get().asFile
if (subIn.exists()) {
copy {
from(subIn) {
include("EntityLib-*.jar")
exclude("*-javadoc.jar", "*-sources.jar")
}
into(buildOut)
}
}
}
}
}
register<Delete>("clean") {
val cleanTasks = subModuleTasks("clean")
dependsOn(cleanTasks)
group = "build"
delete(rootProject.layout.buildDirectory)
}
defaultTasks("build")
}