mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-23 22:34:02 +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")
|
compileOnly("org.jetbrains:annotations:24.1.0")
|
||||||
|
|
||||||
intellijPlatform {
|
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
|
// 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")
|
// E.g. local("/Users/{user}/Applications/IntelliJ IDEA Ultimate.app")
|
||||||
// Or something like: intellijIdeaUltimate(ideaVersion)
|
// Or something like: intellijIdeaUltimate(ideaVersion)
|
||||||
create(ideaType, ideaVersion)
|
create(ideaType, ideaVersion, useInstaller)
|
||||||
|
|
||||||
pluginVerifier()
|
pluginVerifier()
|
||||||
zipSigner()
|
zipSigner()
|
||||||
|
@ -35,7 +35,11 @@ dependencies {
|
|||||||
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.3")
|
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.3")
|
||||||
|
|
||||||
intellijPlatform {
|
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.Platform)
|
||||||
testFramework(TestFrameworkType.JUnit5)
|
testFramework(TestFrameworkType.JUnit5)
|
||||||
bundledPlugins("com.intellij.java", "org.jetbrains.plugins.yaml")
|
bundledPlugins("com.intellij.java", "org.jetbrains.plugins.yaml")
|
||||||
|
@ -28,7 +28,11 @@ dependencies {
|
|||||||
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.3")
|
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.3")
|
||||||
|
|
||||||
intellijPlatform {
|
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.Platform)
|
||||||
testFramework(TestFrameworkType.JUnit5)
|
testFramework(TestFrameworkType.JUnit5)
|
||||||
instrumentationTools()
|
instrumentationTools()
|
||||||
|
@ -28,7 +28,11 @@ dependencies {
|
|||||||
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.3")
|
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.3")
|
||||||
|
|
||||||
intellijPlatform {
|
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")
|
bundledPlugins("com.intellij.java")
|
||||||
testFramework(TestFrameworkType.Platform)
|
testFramework(TestFrameworkType.Platform)
|
||||||
testFramework(TestFrameworkType.JUnit5)
|
testFramework(TestFrameworkType.JUnit5)
|
||||||
|
Loading…
Reference in New Issue
Block a user