Skip to content

Commit

Permalink
CMP-7288 explicitly specify IJ platform compatibility range (#5189)
Browse files Browse the repository at this point in the history
Explicitly specify compatible IJ platform builds: current version as a
minimum and open range as maximum

Fixes https://youtrack.jetbrains.com/issue/CMP-7288
  • Loading branch information
kropp committed Dec 18, 2024
1 parent 6d3f5b9 commit 7ddb0a7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion idea-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ dependencies {
}

intellijPlatform {
pluginConfiguration { name = "Compose Multiplatform IDE Support" }
pluginConfiguration {
name = "Compose Multiplatform IDE Support"
ideaVersion {
sinceBuild = "242.20224"
untilBuild = provider { null }
}
}
buildSearchableOptions = false
autoReload = false

Expand Down

0 comments on commit 7ddb0a7

Please sign in to comment.