Skip to content

Commit 5615795

Browse files
authored
CMP-7288 explicitly specify IJ platform compatibility range (#5189)
Explicitly specify compatible IJ platform builds: current version as a minimum and open range as maximum Fixes https://youtrack.jetbrains.com/issue/CMP-7288
1 parent c36d9cb commit 5615795

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

idea-plugin/build.gradle.kts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@ dependencies {
3333
}
3434

3535
intellijPlatform {
36-
pluginConfiguration { name = "Compose Multiplatform IDE Support" }
36+
pluginConfiguration {
37+
name = "Compose Multiplatform IDE Support"
38+
ideaVersion {
39+
sinceBuild = "242.20224"
40+
untilBuild = provider { null }
41+
}
42+
}
3743
buildSearchableOptions = false
3844
autoReload = false
3945

0 commit comments

Comments
 (0)