Files
kotlin-cloudflare-worker/build.gradle.kts
T

37 lines
727 B
Kotlin
Raw Normal View History

2026-01-03 04:08:34 +08:00
plugins {
kotlin("multiplatform") version "2.2.21"
id("maven-publish")
}
group = "cn.rtast.kotlin-cfworker"
version = "1.0.2"
2026-01-03 04:08:34 +08:00
repositories {
mavenCentral()
}
kotlin {
explicitApi()
js(IR) { nodejs { binaries.executable() } }
sourceSets {
jsMain.dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
}
commonTest.dependencies {
implementation(kotlin("test"))
}
}
}
publishing {
repositories {
maven("https://repo.maven.rtast.cn/releases") {
credentials {
username = "RTAkland"
password = System.getenv("PUBLISH_TOKEN")
}
}
}
}