Skip to content

Commit 0403b0a

Browse files
committed
Select correct pluginVerifier versions
1 parent 28fbe04 commit 0403b0a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,15 @@ intellijPlatform {
8989
}
9090
pluginVerification {
9191
ides {
92-
recommended()
92+
select {
93+
it.types = [IntelliJPlatformType.IntellijIdeaCommunity]
94+
it.sinceBuild = properties("platformSinceBuild")
95+
it.untilBuild = '252.*'
96+
}
97+
select {
98+
it.types = [IntelliJPlatformType.IntellijIdea]
99+
it.sinceBuild = '253'
100+
}
93101
}
94102
}
95103
signPlugin {

0 commit comments

Comments
 (0)