1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-03-01 22:46:01 +01:00
IntelliJ-IdeaVim/annotation-processors/build.gradle.kts

31 lines
830 B
Plaintext
Raw Normal View History

2023-05-05 08:53:33 +02:00
/*
* Copyright 2003-2023 The IdeaVim authors
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE.txt file or at
* https://opensource.org/licenses/MIT.
*/
plugins {
kotlin("jvm")
2023-09-30 03:05:54 +02:00
kotlin("plugin.serialization") version "1.8.21"
2023-05-05 08:53:33 +02:00
}
val kotlinxSerializationVersion: String by project
2023-05-05 08:53:33 +02:00
group = "com.intellij"
version = "SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
compileOnly("com.google.devtools.ksp:symbol-processing-api:1.9.22-1.0.16")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:$kotlinxSerializationVersion") {
// kotlin stdlib is provided by IJ, so there is no need to include it into the distribution
exclude("org.jetbrains.kotlin", "kotlin-stdlib")
exclude("org.jetbrains.kotlin", "kotlin-stdlib-common")
}
2023-09-30 03:05:54 +02:00
}