1
0
mirror of https://github.com/chylex/IntelliJ-Keyboard-Master.git synced 2025-04-11 03:15:47 +02:00

Remove Kotlin stdlib from distribution

This commit is contained in:
chylex 2021-10-23 22:05:20 +02:00
parent 23da06ac01
commit 27b0f882b2
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548
2 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,9 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
java
kotlin("jvm") version "1.5.10"
id("org.jetbrains.intellij") version "1.2.0"
java
}
group = "com.chylex.intellij.keyboardmaster"
@ -12,7 +14,6 @@ repositories {
}
dependencies {
implementation(kotlin("stdlib"))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
@ -25,3 +26,7 @@ intellij {
plugins.add("IdeaVIM:0.66")
}
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
}

1
gradle.properties Normal file
View File

@ -0,0 +1 @@
kotlin.stdlib.default.dependency=false