forked from retrooper/packetevents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
51 lines (41 loc) · 1.39 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
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
group = "com.github.retrooper"
description = rootProject.name
version = "2.3.1-SNAPSHOT" //TODO UPDATE - ADD "-SNAPSHOT" if we are dealing with snapshot versions
tasks {
wrapper {
gradleVersion = "8.5"
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)
}
register<ShadowJar>("shadowJar") {
manifest {
attributes["paperweight-mappings-namespace"] = "mojang"
}
}
defaultTasks("build")
}