We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ba1e8 commit b84a8cbCopy full SHA for b84a8cb
build.gradle.kts
@@ -171,7 +171,12 @@ intellijPlatform {
171
failureLevel = listOf(INVALID_PLUGIN, COMPATIBILITY_PROBLEMS, MISSING_DEPENDENCIES)
172
verificationReportsFormats = listOf(MARKDOWN, PLAIN)
173
ides {
174
- recommended()
+ 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
+ }
180
}
181
freeArgs = listOf(
182
"-mute",
0 commit comments