1
0
mirror of https://github.com/chylex/IntelliJ-AceJump.git synced 2025-05-07 08:34:03 +02:00

Merge pull request from chylex/pr/kotlin-stdlib

Do not bundle kotlin stdlib
This commit is contained in:
breandan 2023-10-28 00:21:29 -04:00 committed by GitHub
commit 3039b5fbb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 11 deletions

View File

@ -2,18 +2,14 @@ import org.jetbrains.changelog.Changelog.OutputType.HTML
import org.jetbrains.changelog.date
plugins {
idea apply true
kotlin("jvm") version "1.9.20-Beta"
idea
kotlin("jvm") version "1.8.20" // https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library
id("org.jetbrains.intellij") version "1.15.0"
id("org.jetbrains.changelog") version "2.2.0"
id("com.github.ben-manes.versions") version "0.48.0"
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = JavaVersion.VERSION_17.toString()
}
named<Zip>("buildPlugin") {
dependsOn("test")
archiveFileName = "AceJump.zip"
@ -51,11 +47,7 @@ tasks {
}
kotlin {
jvmToolchain {
run {
languageVersion = JavaLanguageVersion.of(17)
}
}
jvmToolchain(17)
sourceSets.all {
languageSettings.apply {
languageVersion = "2.0"

View File

@ -1 +1,4 @@
kotlin.stdlib.default.dependency=false
kotlin.incremental.useClasspathSnapshot=false
org.gradle.jvmargs=-Xmx2048m