-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
44 lines (38 loc) · 1.22 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
import common.*
plugins {
dev.suresh.plugin.root
// alias(libs.plugins.kotlin.multiplatform) apply false
// id(libs.plugins.kotlin.multiplatform.get().pluginId)
}
description = "Kotlin Multiplatform Playground!"
nmcp {
centralPortal {
username = mavenCentralUsername
password = mavenCentralPassword
publishingType = "AUTOMATIC"
}
}
dependencies {
dokka(projects.shared)
dokka(projects.meta.ksp.processor)
dokka(projects.meta.compiler.plugin)
dokka(projects.backend.jvm)
dokka(projects.backend.data)
dokka(projects.backend.profiling)
dokka(projects.backend.security)
dokka(projects.web)
nmcpAggregation(projects.shared)
nmcpAggregation(projects.depMgmt.bom)
nmcpAggregation(projects.depMgmt.catalog)
nmcpAggregation(projects.meta.ksp.processor)
nmcpAggregation(projects.meta.compiler.plugin)
nmcpAggregation(projects.backend.jvm)
nmcpAggregation(projects.backend.data)
nmcpAggregation(projects.backend.profiling)
nmcpAggregation(projects.backend.security)
nmcpAggregation(projects.web)
// Optional modules
findProject(":backend:native")?.let { nmcpAggregation(it) }
findProject(":compose:cmp")?.let { nmcpAggregation(it) }
findProject(":compose:html")?.let { nmcpAggregation(it) }
}