Skip to content

Commit b84a8cb

Browse files
committed
fix: Validate against IJ versions / Verify plugin (push) error
Signed-off-by: azerr <[email protected]>
1 parent b1ba1e8 commit b84a8cb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,12 @@ intellijPlatform {
171171
failureLevel = listOf(INVALID_PLUGIN, COMPATIBILITY_PROBLEMS, MISSING_DEPENDENCIES)
172172
verificationReportsFormats = listOf(MARKDOWN, PLAIN)
173173
ides {
174-
recommended()
174+
select {
175+
types = listOf(IntelliJPlatformType.IntellijIdeaCommunity)
176+
channels = listOf(ProductRelease.Channel.RELEASE) // Only stable releases
177+
sinceBuild = "242" // From your minimum supported version
178+
untilBuild = "252.*" // Up to current major version
179+
}
175180
}
176181
freeArgs = listOf(
177182
"-mute",

0 commit comments

Comments
 (0)