File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ val pluginSinceBuild = prop("pluginSinceBuild")
44val pluginUntilBuild = prop(" pluginUntilBuild" )
55val platformVersion = prop(" platformVersion" )
66val platformType = prop(" platformType" )
7+ val platformIdeVersions = prop(" platformIdeVersions" )
78
89plugins {
910 idea
@@ -94,7 +95,7 @@ tasks {
9495 }
9596
9697 runPluginVerifier {
97- ideVersions.set(listOf ( " IU-2022.2 " , " IU-2022.3 " ) )
98+ ideVersions.set(platformIdeVersions.split( ' , ' ).map { it.trim() } )
9899 }
99100
100101 compileJava {
Original file line number Diff line number Diff line change @@ -10,5 +10,6 @@ pluginUntilBuild=231.*
1010
1111platformType =IU
1212platformVersion =IU-LATEST-EAP-SNAPSHOT
13+ platformIdeVersions =IU-2022.2,IU-2022.3,IU-2023.1
1314
1415kotlin.code.style =official
You can’t perform that action at this time.
0 commit comments