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
4
4
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
5
5
import java.security.MessageDigest
6
6
import java.util.zip.ZipFile
7
+ import kotlin.io.path.pathString
7
8
8
9
plugins {
9
10
id(" java" )
@@ -61,8 +62,11 @@ dependencies {
61
62
intellijPlatform {
62
63
intellijIdeaCommunity(libs.versions.intellij)
63
64
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 )
66
70
pluginVerifier()
67
71
}
68
72
You can’t perform that action at this time.
0 commit comments