-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
42 lines (37 loc) · 1.03 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
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!"
dependencies {
dokka(project(":shared"))
dokka(project(":meta:ksp:processor"))
dokka(project(":meta:compiler:plugin"))
dokka(project(":backend:jvm"))
dokka(project(":backend:data"))
dokka(project(":backend:profiling"))
dokka(project(":backend:security"))
dokka(project(":web"))
}
nmcp {
publishAggregation {
project(":shared")
project(":dep-mgmt:bom")
project(":dep-mgmt:catalog")
project(":meta:ksp:processor")
project(":meta:compiler:plugin")
project(":backend:jvm")
project(":backend:data")
project(":backend:profiling")
project(":backend:security")
project(":web")
// project(":backend:native")
// project(":compose:cmp")
// project(":compose:html")
username = mavenCentralUsername
password = mavenCentralPassword
publicationType = "AUTOMATIC"
}
}