generated from Kotlin/compiler-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
57 lines (42 loc) · 1.14 KB
/
build.gradle.kts
File metadata and controls
57 lines (42 loc) · 1.14 KB
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
@file:OptIn(ExperimentalWasmDsl::class)
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
plugins {
alias(libs.plugins.kotlin.multiplatform)
alias(libs.plugins.kotlin.binary.compatibility.validator)
alias(libs.plugins.vanniktech.publish)
}
kotlin {
explicitApi()
androidNativeArm32()
androidNativeArm64()
androidNativeX64()
androidNativeX86()
iosArm64()
iosSimulatorArm64()
iosX64()
js().nodejs()
jvm()
linuxArm64()
linuxX64()
macosArm64()
macosX64()
mingwX64()
tvosArm64()
tvosSimulatorArm64()
tvosX64()
wasmJs().nodejs()
wasmWasi().nodejs()
watchosArm32()
watchosArm64()
watchosDeviceArm64()
watchosSimulatorArm64()
watchosX64()
applyDefaultHierarchyTemplate()
}
configure<com.vanniktech.maven.publish.MavenPublishBaseExtension> {
coordinates(rootProject.group.toString(), "stack-tracking-core-api", libs.versions.calltreevisualizer.release.target.get())
pom {
name.set("Coroutine Call Tree Visualization - Core API")
description.set("Core API and annotations for coroutine call tree tracking")
}
}