26 lines
565 B
Kotlin
26 lines
565 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.multiplatform)
|
|
id("com.varabyte.kobweb.internal.publish")
|
|
}
|
|
|
|
group = "com.varabyte.kobweb"
|
|
version = libs.versions.kobweb.get()
|
|
|
|
kotlin {
|
|
js {
|
|
browser()
|
|
}
|
|
|
|
sourceSets {
|
|
jsMain.dependencies {
|
|
api(projects.common.frameworkAnnotations) // api or else opt-in message won't be shown
|
|
}
|
|
}
|
|
}
|
|
|
|
kobwebPublication {
|
|
artifactName.set("Kobweb Worker Interface")
|
|
artifactId.set("kobweb-worker-interface")
|
|
description.set("Common interface for worker implementations.")
|
|
}
|