mirror of
https://github.com/chylex/IntelliJ-Keyboard-Master.git
synced 2025-05-01 08:34:09 +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 {
|
plugins {
|
||||||
|
java
|
||||||
kotlin("jvm") version "1.5.10"
|
kotlin("jvm") version "1.5.10"
|
||||||
id("org.jetbrains.intellij") version "1.2.0"
|
id("org.jetbrains.intellij") version "1.2.0"
|
||||||
java
|
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "com.chylex.intellij.keyboardmaster"
|
group = "com.chylex.intellij.keyboardmaster"
|
||||||
@ -12,7 +14,6 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(kotlin("stdlib"))
|
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
|
||||||
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
||||||
}
|
}
|
||||||
@ -25,3 +26,7 @@ intellij {
|
|||||||
plugins.add("IdeaVIM:0.66")
|
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