13 lines
537 B
Plaintext
13 lines
537 B
Plaintext
|
plugins {
|
||
|
// Apply the shared build logic from a convention plugin.
|
||
|
// The shared code is located in `buildSrc/src/main/kotlin/kotlin-jvm.gradle.kts`.
|
||
|
id("buildsrc.convention.kotlin-jvm")
|
||
|
// Apply Kotlin Serialization plugin from `gradle/libs.versions.toml`.
|
||
|
alias(libs.plugins.kotlinPluginSerialization)
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
// Apply the kotlinx bundle of dependencies from the version catalog (`gradle/libs.versions.toml`).
|
||
|
implementation(libs.bundles.kotlinxEcosystem)
|
||
|
testImplementation(kotlin("test"))
|
||
|
}
|