Skip to content

Commit

Permalink
fix(intellij): exclude incompatible IJ 2023.3+
Browse files Browse the repository at this point in the history
  • Loading branch information
fwouts committed Dec 13, 2023
1 parent a7f4d48 commit 22aee49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ tasks {
patchPluginXml {
version.set(properties("pluginVersion"))
sinceBuild.set(properties("pluginSinceBuild"))
untilBuild.set("")
untilBuild.set(properties("pluginUntilBuild"))
}

runPluginVerifier {
Expand Down
1 change: 1 addition & 0 deletions integrations/intellij/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pluginVersion = 1.27.1
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 231
pluginUntilBuild = 232

# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions.
Expand Down

0 comments on commit 22aee49

Please sign in to comment.