From ef49de65400abc5128dee6ab36ea30605fa72442 Mon Sep 17 00:00:00 2001 From: Keith Brings Date: Thu, 25 Apr 2024 18:35:46 +0700 Subject: [PATCH] 2024.1 minor update --- CONTRIBUTING.md | 6 +++++- build.gradle | 5 ++--- gradle.properties | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 81aeca43c..3c67ccef3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -110,6 +110,11 @@ JetBrains plugins are able to set the text attribute values for `TextAttributeKe ## Building +### Plugin +If using WSL for your build environment you may alternatively build the plugin without launching the linux version of intellij. +From the command line run `./gradlew buildPlugin` or from IntelliJ, right-click `intellij-elixir` in the Gradle Tool Window and select `buildPlugin`. +and install from the `build/distributions` folder. + ### Documentation The documentation files ([`CHANGELOG.md`](CHANGELOG.md), [`CONTRIBUTING.md`](CONTRIBUTING.md), [`README.md`](README.md), @@ -127,4 +132,3 @@ Then regenerate the table of contents using `doctoc` ```sh doctoc . ``` - diff --git a/build.gradle b/build.gradle index e66d06591..4aa33994b 100644 --- a/build.gradle +++ b/build.gradle @@ -70,7 +70,7 @@ allprojects { pluginDescription.set(bodyInnerHTML("resources/META-INF/description.html")) sinceBuild = "233.11799.241" - untilBuild = "233.*" + untilBuild = "241.*" } publishPlugin { @@ -82,7 +82,7 @@ allprojects { } runPluginVerifier { - ideVersions = ["2023.3"] + ideVersions = ["2024.1"] } } @@ -263,4 +263,3 @@ test { dependsOn runQuoter finalizedBy stopQuoter } - diff --git a/gradle.properties b/gradle.properties index 94b3ad3b5..5aed68bff 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ # https://www.jetbrains.com/intellij-repository/releases # https://www.jetbrains.com/intellij-repository/snapshots baseVersion=17.0.0 -ideaVersion=2023.3 +ideaVersion=2024.1 # MUST stay at 1.8 for JPS (Build/Compile Project) compatibility even if JRE/JBR is newer javaVersion=17 javaTargetVersion=17