From 4f601a9b554d7f322ecd91898026b0dbb3635a6f Mon Sep 17 00:00:00 2001 From: Takeshi Kunimi Date: Mon, 13 Sep 2021 01:44:30 +0900 Subject: [PATCH] Update dependencies * gradle-intellij-plugin to 1.1.3 * JVM to 11 With these changes, the way other settings are described has changed slightly. * https://github.com/JetBrains/gradle-intellij-plugin/issues/703 gradle-intellij-plugin from v1.1.4 or above (at least to v1.1.6) has a bug. * https://github.com/JetBrains/gradle-intellij-plugin/issues/752 --- build.gradle | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 3376e98..0a07268 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { plugins { id 'java' - id 'org.jetbrains.intellij' version '0.4.8' + id 'org.jetbrains.intellij' version '1.1.3' } apply plugin: 'kotlin' @@ -17,7 +17,11 @@ apply plugin: 'kotlin' group 'io.github.takc923' version '0.3-SNAPSHOT' -sourceCompatibility = 1.8 +sourceCompatibility = 11 + +compileKotlin { + kotlinOptions.jvmTarget = "11" +} repositories { mavenCentral() @@ -29,10 +33,11 @@ dependencies { intellij { version '2021.1' - updateSinceUntilBuild false + updateSinceUntilBuild = false } + patchPluginXml { - changeNotes """ + changeNotes = """

v0.2

""" -} \ No newline at end of file +}