Skip to content

Commit

Permalink
Feat: support 2023.2 IntelliJ for plugin. (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
MbIXjkee authored Aug 4, 2023
1 parent 9968952 commit 37dce69
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
6 changes: 2 additions & 4 deletions packages/elementary_tools/plugin_intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ plugins {
// Java support
id("java")
// Kotlin support
id("org.jetbrains.kotlin.jvm") version "1.6.21"
id("org.jetbrains.kotlin.jvm") version "1.9.0"
// Gradle IntelliJ Plugin
id("org.jetbrains.intellij") version "1.6.0"
id("org.jetbrains.intellij") version "1.15.0"
// Gradle Changelog Plugin
id("org.jetbrains.changelog") version "1.3.1"
// Gradle Qodana Plugin
Expand All @@ -30,7 +30,6 @@ intellij {
version.set(properties("platformVersion"))
type.set(properties("platformType"))
downloadSources.set(properties("platformDownloadSources").toBoolean())
updateSinceUntilBuild.set(true)

// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file.
plugins.set(properties("platformPlugins").split(',').map(String::trim).filter(String::isNotEmpty))
Expand Down Expand Up @@ -69,7 +68,6 @@ tasks {
patchPluginXml {
version.set(properties("pluginVersion"))
sinceBuild.set(properties("pluginSinceBuild"))
untilBuild.set(properties("pluginUntilBuild"))

// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
pluginDescription.set(
Expand Down
11 changes: 5 additions & 6 deletions packages/elementary_tools/plugin_intellij/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,14 @@
# org.gradle.parallel=true
#Thu Dec 30 10:34:23 MSK 2021\
kotlin.stdlib.default.dependency=false
javaVersion=11
javaVersion=17
pluginGroup=ru.elementaryteam.elementarypluginintellij
platformType=IC
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
platformPlugins=io.flutter\:70.0.5, Dart\:222.3739.24
pluginVersion=0.0.4
platformPlugins=io.flutter\:75.1.4, Dart\:232.8660.129
pluginVersion=0.0.5
pluginName=elementary_plugin_intellij
platformDownloadSources=true
platformVersion=2022.2.1
platformVersion=2023.2
pluginSinceBuild=203
pluginUntilBuild=222.*
gradleVersion=7.5.1
gradleVersion=8.2.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 37dce69

Please sign in to comment.