@@ -6,6 +6,7 @@ import org.gradle.testkit.runner.TaskOutcome
66import org.jetbrains.intellij.platform.gradle.Constants.Tasks
77import org.jetbrains.intellij.platform.gradle.models.Coordinates
88import org.jetbrains.intellij.platform.gradle.models.resolveLatestVersion
9+ import kotlin.test.Ignore
910import kotlin.test.Test
1011
1112private const val DEPENDENCIES = " dependencies"
@@ -162,6 +163,7 @@ class IntelliJPlatformDependencyValidationIntegrationTest : IntelliJPlatformInte
162163 }
163164
164165 @Test
166+ @Ignore(" Temporarily disabled due to Maven Central library publishing delays" )
165167 fun `correctly resolve Marketplace ZIP Signer dependency in the latest version` () {
166168 buildFile write // language=kotlin
167169 """
@@ -205,6 +207,7 @@ class IntelliJPlatformDependencyValidationIntegrationTest : IntelliJPlatformInte
205207 }
206208
207209 @Test
210+ @Ignore(" Temporarily disabled due to Maven Central library publishing delays" )
208211 fun `correctly resolve Marketplace ZIP Signer dependency in the latest version when a default dependency is used` () {
209212 buildFile write // language=kotlin
210213 """
@@ -352,7 +355,7 @@ class IntelliJPlatformDependencyValidationIntegrationTest : IntelliJPlatformInte
352355 build(DEPENDENCIES , projectProperties = properties) {
353356 assertContains(
354357 """
355- intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime fix Classpath resolvable configuration
358+ intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime Fix Classpath
356359 \--- bundledModule:intellij-platform-test-runtime:IC-243.21565.193
357360 """ .trimIndent(),
358361 output,
@@ -363,15 +366,15 @@ class IntelliJPlatformDependencyValidationIntegrationTest : IntelliJPlatformInte
363366 build(DEPENDENCIES , projectProperties = properties + mapOf (" intellijPlatform.type" to IntelliJPlatformType .Rider )) {
364367 assertContains(
365368 """
366- intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime fix Classpath resolvable configuration
369+ intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime Fix Classpath
367370 \--- bundledModule:intellij-platform-test-runtime:RD-243.21565.191
368371 """ .trimIndent(),
369372 output,
370373 )
371374
372375 assertContains(
373376 """
374- intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime fix Classpath resolvable configuration
377+ intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime Fix Classpath
375378 \--- bundledModule:intellij-platform-test-runtime:RD-243.21565.191
376379 """ .trimIndent(),
377380 output,
@@ -420,7 +423,7 @@ class IntelliJPlatformDependencyValidationIntegrationTest : IntelliJPlatformInte
420423 build(DEPENDENCIES , projectProperties = properties + mapOf (" intellijPlatform.version" to " 2024.1.7" )) {
421424 assertContains(
422425 """
423- intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime fix Classpath resolvable configuration
426+ intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime Fix Classpath
424427 \--- bundledModule:intellij-platform-test-runtime:RD-241.19072.30
425428 """ .trimIndent(),
426429 output,
@@ -436,7 +439,7 @@ class IntelliJPlatformDependencyValidationIntegrationTest : IntelliJPlatformInte
436439 build(DEPENDENCIES , projectProperties = properties + mapOf (" intellijPlatform.version" to " 2024.2.8" )) {
437440 assertContains(
438441 """
439- intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime fix Classpath resolvable configuration
442+ intellijPlatformTestRuntimeFixClasspath - IntelliJ Platform Test Runtime Fix Classpath
440443 \--- bundledModule:intellij-platform-test-runtime:RD-242.23726.225
441444 """ .trimIndent(),
442445 output,
0 commit comments