Skip to content

Commit f401e08

Browse files
authored
build: fix 251 build failure from resolving ui-tests-starter dependencies (#5329)
ui-tests-starter attempts to resolve the IDE distribution and fails, but it should not actually be required to build/execute
1 parent 0761f14 commit f401e08

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

ui-tests-starter/build.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id("toolkit-kotlin-conventions")
1010
id("toolkit-intellij-plugin")
1111

12-
id("org.jetbrains.intellij.platform")
12+
id("org.jetbrains.intellij.platform.base")
1313
}
1414

1515
val ideProfile = IdeVersions.ideProfile(project)
@@ -30,12 +30,11 @@ intellijPlatform {
3030
val testPlugins by configurations.registering
3131

3232
dependencies {
33-
testImplementation(platform("com.jetbrains.intellij.tools:ide-starter-squashed"))
3433
// should really be set by the BOM, but too much work to figure out right now
3534
testImplementation("org.kodein.di:kodein-di-jvm:7.20.2")
3635
intellijPlatform {
37-
intellijIdeaCommunity(IdeVersions.ideProfile(providers).map { it.name })
38-
36+
// shouldn't be needed? but IsolationException
37+
intellijIdeaCommunity(ideProfile.community.sdkVersion)
3938
testFramework(TestFrameworkType.Starter)
4039
}
4140

0 commit comments

Comments
 (0)