forked from Kotlin/dokka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
131 lines (112 loc) · 4 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
plugins {
id("dokkabuild.base")
idea
}
val publishedIncludedBuilds = listOf("runner-cli", "dokka-gradle-plugin", "runner-maven-plugin")
val gradlePluginIncludedBuilds = listOf("dokka-gradle-plugin")
addDependencyOnSameTasksOfIncludedBuilds("assemble", "build", "clean", "check")
registerParentGroupTasks(
"publishing", taskNames = listOf(
"publishAllPublicationsToMavenCentralRepository",
"publishAllPublicationsToProjectLocalRepository",
"publishAllPublicationsToSnapshotRepository",
"publishAllPublicationsToSpaceDevRepository",
"publishAllPublicationsToSpaceTestRepository",
"publishToMavenLocal",
)
) {
it.name in publishedIncludedBuilds
}
registerParentGroupTasks(
"gradle plugin", taskNames = listOf(
"publishPlugins",
"validatePlugins",
)
) {
it.name in gradlePluginIncludedBuilds
}
registerParentGroupTasks(
"bcv", taskNames = listOf(
"apiDump",
"apiCheck",
"apiBuild",
)
) {
it.name in publishedIncludedBuilds
}
registerParentGroupTasks(
"verification", taskNames = listOf(
"test",
)
)
tasks.register("integrationTest") {
group = "verification"
description = "Runs integration tests of this project. Might take a while and require additional setup."
dependsOn(includedBuildTasks("integrationTest") {
it.name == "dokka-integration-tests"
})
}
fun addDependencyOnSameTasksOfIncludedBuilds(vararg taskNames: String) {
taskNames.forEach { taskName ->
tasks.named(taskName) {
dependsOn(includedBuildTasks(taskName))
}
}
}
fun registerParentGroupTasks(
groupName: String,
taskNames: List<String>,
includedBuildFilter: (IncludedBuild) -> Boolean = { true }
) = taskNames.forEach { taskName ->
tasks.register(taskName) {
group = groupName
description = "A parent task that calls tasks with the same name in all subprojects and included builds"
dependsOn(subprojectTasks(taskName), includedBuildTasks(taskName, includedBuildFilter))
}
}
fun subprojectTasks(taskName: String): List<String> =
subprojects
.filter { it.getTasksByName(taskName, false).isNotEmpty() }
.map { ":${it.path}:$taskName" }
fun includedBuildTasks(taskName: String, filter: (IncludedBuild) -> Boolean = { true }): List<TaskReference> =
gradle.includedBuilds
.filter { it.name != "build-logic" && it.name != "build-settings-logic" }
.filter(filter)
.mapNotNull { it.task(":$taskName") }
tasks.wrapper {
doLast {
// Manually update the distribution URL to use cache-redirector.
// (Workaround for https://github.com/gradle/gradle/issues/17515)
propertiesFile.writeText(
propertiesFile.readText()
.replace(
"https\\://services.gradle.org/",
"https\\://cache-redirector.jetbrains.com/services.gradle.org/",
)
)
}
}
idea {
module {
// Mark directories as excluded so that they don't appear in IntelliJ's global search.
excludeDirs.addAll(
files(
".idea",
".husky",
".kotlin",
"dokka-integration-tests/.kotlin",
"dokka-runners/dokka-gradle-plugin/.kotlin",
"dokka-runners/runner-cli/.kotlin",
"dokka-runners/runner-maven-plugin/.kotlin",
"dokka-runners/dokka-gradle-plugin/src/testFunctional/resources/KotlinDslAccessorsTest/",
"dokka-integration-tests/gradle/src/testExampleProjects/expectedData",
"dokka-integration-tests/gradle/projects/it-android/expectedData",
"dokka-integration-tests/gradle/projects/it-android-compose/expectedData",
"dokka-integration-tests/gradle/projects/it-kotlin-multiplatform/expectedData",
)
)
}
}