forked from arrow-kt/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
136 lines (116 loc) · 3.6 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
132
133
134
135
136
@file:Suppress("DSL_SCOPE_VIOLATION")
import kotlinx.knit.KnitPluginExtension
import org.jetbrains.dokka.gradle.DokkaMultiModuleTask
import org.jetbrains.dokka.gradle.DokkaTaskPartial
import org.jetbrains.kotlin.gradle.dsl.KotlinProjectExtension
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension
import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin
buildscript {
repositories {
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
classpath(libs.kotlinx.knit)
}
}
allprojects {
repositories {
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
}
plugins {
base
alias(libs.plugins.dokka)
alias(libs.plugins.animalSniffer) apply false
alias(libs.plugins.kotest.multiplatform) apply false
alias(libs.plugins.kotlinx.kover)
alias(libs.plugins.kotlin.multiplatform) apply false
alias(libs.plugins.kotlin.binaryCompatibilityValidator)
alias(libs.plugins.arrowGradleConfig.nexus)
}
apply(plugin = libs.plugins.kotlinx.knit.get().pluginId)
configure<KnitPluginExtension> {
siteRoot = "https://arrow-kt.io/"
rootDir = file("arrow-libs")
files = fileTree(file("arrow-libs")) {
include("**/*.md")
include("**/*.kt")
include("**/*.kts")
exclude("**/build/**")
exclude("**/.gradle/**")
}
}
koverMerged {
enable()
filters {
projects {
excludes.addAll(
listOf(
":arrow-annotations",
":arrow-stack",
":arrow-optics-ksp-plugin"
)
)
}
}
}
allprojects {
group = property("projects.group").toString()
}
val enableCompatibilityMetadataVariant =
providers.gradleProperty("kotlin.mpp.enableCompatibilityMetadataVariant")
.orNull?.toBoolean() == true
subprojects {
[email protected]<DokkaTaskPartial>().configureEach {
[email protected]<KotlinProjectExtension>()?.sourceSets?.forEach { kotlinSourceSet ->
dokkaSourceSets.named(kotlinSourceSet.name) {
perPackageOption {
matchingRegex.set(".*\\.internal.*")
suppress.set(true)
}
if (project.name == "arrow-fx-coroutines") externalDocumentationLink("https://kotlinlang.org/api/kotlinx.coroutines/")
skipDeprecated.set(true)
reportUndocumented.set(false)
val baseUrl: String = checkNotNull(properties["pom.smc.url"]?.toString())
kotlinSourceSet.kotlin.srcDirs.filter { it.exists() }.forEach { srcDir ->
sourceLink {
localDirectory.set(srcDir)
remoteUrl.set(uri("$baseUrl/blob/main/${srcDir.relativeTo(rootProject.rootDir)}").toURL())
remoteLineSuffix.set("#L")
}
}
}
}
}
}
tasks {
val undocumentedProjects =
listOf(project(":arrow-optics-ksp-plugin"))
dokkaHtmlMultiModule {
dependsOn("copyCNameFile")
removeChildTasks(undocumentedProjects)
}
getByName("knitPrepare").dependsOn(getTasksByName("dokka", true))
withType<DokkaMultiModuleTask>().configureEach {
outputDirectory.set(file("docs"))
moduleName.set("Arrow")
}
register<Copy>("copyCNameFile") {
from(layout.projectDirectory.dir("static").file("CNAME"))
into(layout.projectDirectory.dir("docs"))
}
}
apiValidation {
ignoredProjects.add("arrow-optics-ksp-plugin")
}
rootProject.plugins.withType<YarnPlugin> {
rootProject.configure<NodeJsRootExtension> {
versions.webpackDevServer.version = "4.11.1"
versions.webpack.version = "5.75.0"
versions.webpackCli.version = "4.10.0"
versions.karma.version = "6.4.1"
versions.mocha.version = "10.2.0"
}
}