diff --git a/ui-tests-starter/build.gradle.kts b/ui-tests-starter/build.gradle.kts index c6a4959b76..32bca78fee 100644 --- a/ui-tests-starter/build.gradle.kts +++ b/ui-tests-starter/build.gradle.kts @@ -9,7 +9,7 @@ plugins { id("toolkit-kotlin-conventions") id("toolkit-intellij-plugin") - id("org.jetbrains.intellij.platform") + id("org.jetbrains.intellij.platform.base") } val ideProfile = IdeVersions.ideProfile(project) @@ -30,12 +30,11 @@ intellijPlatform { val testPlugins by configurations.registering dependencies { - testImplementation(platform("com.jetbrains.intellij.tools:ide-starter-squashed")) // should really be set by the BOM, but too much work to figure out right now testImplementation("org.kodein.di:kodein-di-jvm:7.20.2") intellijPlatform { - intellijIdeaCommunity(IdeVersions.ideProfile(providers).map { it.name }) - + // shouldn't be needed? but IsolationException + intellijIdeaCommunity(ideProfile.community.sdkVersion) testFramework(TestFrameworkType.Starter) }