mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:10:43 +07:00
^KTIJ-31816 fixed (cherry picked from commit 0ef15e11dcc4a5df2cbbcab192ea905566670d9a) IJ-CR-147990 GitOrigin-RevId: 48d4cc3854389fe6e4c73fb086790d020799fe04
14 lines
538 B
Kotlin
14 lines
538 B
Kotlin
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"))
|
|
}
|