Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
* gradle-intellij-plugin to 1.1.3
* JVM to 11

With these changes, the way other settings are described has changed slightly.

* JetBrains/intellij-platform-gradle-plugin#703

gradle-intellij-plugin from v1.1.4 or above (at least to v1.1.6) has a bug.

* JetBrains/intellij-platform-gradle-plugin#752
  • Loading branch information
takc923 committed Sep 12, 2021
1 parent e2666d4 commit 4f601a9
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,19 @@ buildscript {

plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.8'
id 'org.jetbrains.intellij' version '1.1.3'
}

apply plugin: 'kotlin'

group 'io.github.takc923'
version '0.3-SNAPSHOT'

sourceCompatibility = 1.8
sourceCompatibility = 11

compileKotlin {
kotlinOptions.jvmTarget = "11"
}

repositories {
mavenCentral()
Expand All @@ -29,10 +33,11 @@ dependencies {

intellij {
version '2021.1'
updateSinceUntilBuild false
updateSinceUntilBuild = false
}

patchPluginXml {
changeNotes """
changeNotes = """
<p>v0.2</p>
<ul>
<li>Update kotlin and supported intellij version</li>
Expand All @@ -42,4 +47,4 @@ patchPluginXml {
<li>Initial release</li>
</ul>
"""
}
}

0 comments on commit 4f601a9

Please sign in to comment.