1
0
mirror of https://github.com/chylex/IntelliJ-Keyboard-Master.git synced 2025-05-06 14:34:06 +02:00
IntelliJ-Keyboard-Master/build.gradle.kts
2021-11-26 22:37:29 +01:00

32 lines
613 B
Plaintext

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.5.10"
id("org.jetbrains.intellij") version "1.2.0"
}
group = "com.chylex.intellij.keyboardmaster"
version = "0.2.1"
repositories {
mavenCentral()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
intellij {
version.set("2021.2.2")
updateSinceUntilBuild.set(false)
if (System.getenv("IDEAVIM") == "1") {
plugins.add("IdeaVIM:0.66")
}
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
}