mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-08 06:34:08 +02:00
Fix the LATEST-EAP-SNAPSHOT tests
This commit is contained in:
parent
785688b1ca
commit
314304246a
build.gradle.kts
tests
@ -111,10 +111,14 @@ dependencies {
|
||||
compileOnly("org.jetbrains:annotations:24.1.0")
|
||||
|
||||
intellijPlatform {
|
||||
// Snapshots don't use installers
|
||||
// https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html#target-versions-installers
|
||||
val useInstaller = "EAP-SNAPSHOT" !in ideaVersion
|
||||
|
||||
// Note that it is also possible to use local("...") to compile against a locally installed IDE
|
||||
// E.g. local("/Users/{user}/Applications/IntelliJ IDEA Ultimate.app")
|
||||
// Or something like: intellijIdeaUltimate(ideaVersion)
|
||||
create(ideaType, ideaVersion)
|
||||
create(ideaType, ideaVersion, useInstaller)
|
||||
|
||||
pluginVerifier()
|
||||
zipSigner()
|
||||
|
@ -35,7 +35,11 @@ dependencies {
|
||||
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.3")
|
||||
|
||||
intellijPlatform {
|
||||
create(ideaType, ideaVersion)
|
||||
// Snapshots don't use installers
|
||||
// https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html#target-versions-installers
|
||||
val useInstaller = "EAP-SNAPSHOT" !in ideaVersion
|
||||
|
||||
create(ideaType, ideaVersion, useInstaller)
|
||||
testFramework(TestFrameworkType.Platform)
|
||||
testFramework(TestFrameworkType.JUnit5)
|
||||
bundledPlugins("com.intellij.java", "org.jetbrains.plugins.yaml")
|
||||
|
@ -28,7 +28,11 @@ dependencies {
|
||||
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.3")
|
||||
|
||||
intellijPlatform {
|
||||
create(ideaType, ideaVersion)
|
||||
// Snapshots don't use installers
|
||||
// https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html#target-versions-installers
|
||||
val useInstaller = "EAP-SNAPSHOT" !in ideaVersion
|
||||
|
||||
create(ideaType, ideaVersion, useInstaller)
|
||||
testFramework(TestFrameworkType.Platform)
|
||||
testFramework(TestFrameworkType.JUnit5)
|
||||
instrumentationTools()
|
||||
|
@ -28,7 +28,11 @@ dependencies {
|
||||
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.3")
|
||||
|
||||
intellijPlatform {
|
||||
create(ideaType, ideaVersion)
|
||||
// Snapshots don't use installers
|
||||
// https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html#target-versions-installers
|
||||
val useInstaller = "EAP-SNAPSHOT" !in ideaVersion
|
||||
|
||||
create(ideaType, ideaVersion, useInstaller)
|
||||
bundledPlugins("com.intellij.java")
|
||||
testFramework(TestFrameworkType.Platform)
|
||||
testFramework(TestFrameworkType.JUnit5)
|
||||
|
Loading…
Reference in New Issue
Block a user