Websocket server supported
This commit is contained in:
34 files changed
+262
-25
No files matched your search
+17
-22
@@ -1,36 +1,31 @@
|
||||
plugins {
|
||||
kotlin("multiplatform") version "2.2.21"
|
||||
kotlin("multiplatform") version "2.2.21" apply false
|
||||
id("maven-publish")
|
||||
}
|
||||
|
||||
group = "cn.rtast.kotlin-cfworker"
|
||||
version = "1.0.2"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
kotlin {
|
||||
explicitApi()
|
||||
js(IR) { nodejs { binaries.executable() } }
|
||||
|
||||
sourceSets {
|
||||
jsMain.dependencies {
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
|
||||
}
|
||||
allprojects {
|
||||
group = "cn.rtast.kotlin-cfworker"
|
||||
version = "1.0.2"
|
||||
|
||||
commonTest.dependencies {
|
||||
implementation(kotlin("test"))
|
||||
}
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
publishing {
|
||||
repositories {
|
||||
maven("https://repo.maven.rtast.cn/releases") {
|
||||
credentials {
|
||||
username = "RTAkland"
|
||||
password = System.getenv("PUBLISH_TOKEN")
|
||||
subprojects {
|
||||
apply(plugin = "org.jetbrains.kotlin.multiplatform")
|
||||
apply(plugin = "maven-publish")
|
||||
|
||||
publishing {
|
||||
repositories {
|
||||
maven("https://repo.maven.rtast.cn/releases") {
|
||||
credentials {
|
||||
username = "RTAkland"
|
||||
password = System.getenv("PUBLISH_TOKEN")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user