From 61edc566a0e234e5bff2b683e56d3f504446cac1 Mon Sep 17 00:00:00 2001 From: Nicolas Filotto Date: Sat, 9 Dec 2023 10:32:10 +0100 Subject: [PATCH] Upgrade to Idea 2023.3.2 --- .github/workflows/ci-build.yaml | 2 +- build-all.sh | 2 +- camel-idea-plugin/build.gradle | 10 +++++----- .../src/main/resources/META-INF/plugin.xml | 2 +- gradle.properties | 2 +- readme.md | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 6686db0e..ccb9e8f8 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -40,7 +40,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - version: [2022.3.3, 2023.1.3, 2023.2.5] + version: [2023.1.3, 2023.2.5, 2023.3.2] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 diff --git a/build-all.sh b/build-all.sh index b11989be..bb7028c1 100755 --- a/build-all.sh +++ b/build-all.sh @@ -1,5 +1,5 @@ #!/bin/bash -for v in "2022.3.3" "2023.1.3" "2023.2.5"; do +for v in "2023.1.3" "2023.2.5" "2023.3.2"; do ./build.sh $v done diff --git a/camel-idea-plugin/build.gradle b/camel-idea-plugin/build.gradle index 8cc99870..198a0771 100644 --- a/camel-idea-plugin/build.gradle +++ b/camel-idea-plugin/build.gradle @@ -26,18 +26,18 @@ intellij { version = ideaVersion downloadSources = true type = project.hasProperty('intellij_type') ? project.intellij_type : 'IC' - plugins = ['java', 'java-i18n', 'properties', 'yaml', 'maven', 'xpath', 'gradle'] + plugins = ['java', 'java-i18n', 'properties', 'yaml', 'maven', 'gradle'] } -// to support IDEA 2022 onwards +// to support IDEA 2023 onwards // http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html patchPluginXml { - sinceBuild = "223" - untilBuild = "232.*" + sinceBuild = "231" + untilBuild = "233.*" } runPluginVerifier { - ideVersions = [ "2022.3", "2023.1", "2023.2" ] + ideVersions = [ "2023.1", "2023.2", "2023.3" ] } // publishPlugin { diff --git a/camel-idea-plugin/src/main/resources/META-INF/plugin.xml b/camel-idea-plugin/src/main/resources/META-INF/plugin.xml index 2f93b36e..fc53626a 100644 --- a/camel-idea-plugin/src/main/resources/META-INF/plugin.xml +++ b/camel-idea-plugin/src/main/resources/META-INF/plugin.xml @@ -11,7 +11,7 @@ -
  • Support for IDEA 2023.2.5
  • +
  • Support for IDEA 2023.3.2
  • ]]>
    diff --git a/gradle.properties b/gradle.properties index feefe119..b1a23372 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,5 +2,5 @@ camelVersion = 4.2.0 camelQuarkusVersion = 3.5.0 camelKameletVersion = 4.1.0 camelKarafVersion = 3.21.2 -ideaVersion=2023.2.5 +ideaVersion=2023.3.2 mavenResolverVersion=1.9.14 \ No newline at end of file diff --git a/readme.md b/readme.md index 323aaec5..319751bb 100644 --- a/readme.md +++ b/readme.md @@ -99,10 +99,10 @@ Importing the project into IntelliJ as plug-in only require you choose ìmport f #### Running the plug-in with a previous versions of IDEA -The plugin is tested with `IDEA 2023.2.5` or newer, but if you want to try with an older version you can follow this guide +The plugin is tested with `IDEA 2023.3.2` or newer, but if you want to try with an older version you can follow this guide > - Follow the guide [build from source](#buildingfromsource) -> - Change the attribute `` in `camel-idea-plugin/src/main/resources/META-INF/plugin.xml` to match the version. please see [document](http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html) for build number description +> - Change the attribute `` in `camel-idea-plugin/src/main/resources/META-INF/plugin.xml` to match the version. please see [document](http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html) for build number description > - Build the source with `./gradlew build` > - The new plugin zip file `camel-idea-plugin--SNAPSHOT.jar` is located in `camel-idea-plugin/build/libs` > - Install the plugin from disk in IDEA preferences