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:
parent
23da06ac01
commit
27b0f882b2
@ -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
1
gradle.properties
Normal file
@ -0,0 +1 @@
|
||||
kotlin.stdlib.default.dependency=false
|
Loading…
Reference in New Issue
Block a user