Files

33 lines
756 B
Kotlin
Raw Permalink Normal View History

2026-01-03 04:08:34 +08:00
plugins {
2026-01-17 23:23:46 +08:00
kotlin("jvm") version "2.2.21" apply false
2026-01-04 00:33:42 +08:00
kotlin("multiplatform") version "2.2.21" apply false
2026-01-17 23:23:46 +08:00
kotlin("plugin.serialization") version "2.2.21" apply false
2026-01-03 04:08:34 +08:00
id("maven-publish")
}
2026-01-17 23:23:46 +08:00
val libVersion: String by extra
2026-01-03 04:08:34 +08:00
2026-01-04 00:33:42 +08:00
allprojects {
2026-01-17 23:23:46 +08:00
group = "kotlin-cloudflare-worker"
version = libVersion
2026-01-03 04:08:34 +08:00
2026-01-04 00:33:42 +08:00
repositories {
mavenCentral()
2026-01-17 23:23:46 +08:00
maven("https://repo.maven.rtast.cn/releases")
2026-01-03 04:08:34 +08:00
}
}
2026-01-04 00:33:42 +08:00
subprojects {
apply(plugin = "maven-publish")
publishing {
repositories {
maven("https://repo.maven.rtast.cn/releases") {
credentials {
username = "RTAkland"
password = System.getenv("PUBLISH_TOKEN")
}
2026-01-03 04:08:34 +08:00
}
}
}
}