File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import org.jetbrains.intellij.platform.gradle.tasks.VerifyPluginTask
44import org.jetbrains.kotlin.gradle.dsl.JvmTarget
55import java.security.MessageDigest
66import java.util.zip.ZipFile
7+ import kotlin.io.path.pathString
78
89plugins {
910 id(" java" )
@@ -61,8 +62,11 @@ dependencies {
6162 intellijPlatform {
6263 intellijIdeaCommunity(libs.versions.intellij)
6364 bundledPlugins(" org.intellij.intelliLang" , " org.jetbrains.plugins.terminal" )
64- instrumentationTools()
65- testFramework(TestFrameworkType .Bundled )
65+ bundledLibrary(provider {
66+ // TODO: This is a workaround, remove in intellij-platform-gradle-plugin 2.2.2
67+ project.intellijPlatform.platformPath.resolve(" lib/testFramework.jar" ).pathString
68+ })
69+ testFramework(TestFrameworkType .Platform )
6670 pluginVerifier()
6771 }
6872
You can’t perform that action at this time.
0 commit comments