From 9b612e56e26fd5e899054e14d399432e4321e7c3 Mon Sep 17 00:00:00 2001
From: Etienne Studer <etienne@studer.nu>
Date: Thu, 22 Sep 2022 17:01:18 +0200
Subject: [PATCH] Ignore tests that require a configurable version of the GE
 Maven extension

---
 .../maven/GradleEnterpriseExtensionApplicationTest.groovy      | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/agent/src/test/groovy/nu/studer/teamcity/buildscan/agent/maven/GradleEnterpriseExtensionApplicationTest.groovy b/agent/src/test/groovy/nu/studer/teamcity/buildscan/agent/maven/GradleEnterpriseExtensionApplicationTest.groovy
index 41540071..eb392454 100644
--- a/agent/src/test/groovy/nu/studer/teamcity/buildscan/agent/maven/GradleEnterpriseExtensionApplicationTest.groovy
+++ b/agent/src/test/groovy/nu/studer/teamcity/buildscan/agent/maven/GradleEnterpriseExtensionApplicationTest.groovy
@@ -1,6 +1,7 @@
 package nu.studer.teamcity.buildscan.agent.maven
 
 import nu.studer.teamcity.buildscan.agent.TcPluginConfig
+import spock.lang.Ignore
 
 import static org.junit.Assume.assumeTrue
 
@@ -649,6 +650,7 @@ class GradleEnterpriseExtensionApplicationTest extends BaseExtensionApplicationT
         jdkCompatibleMavenVersion << UNSUPPORTED_MAVEN_VERSIONS
     }
 
+    @Ignore("While the GE Maven extension version is hard-coded in the plugin, the behavior with older extension versions cannot be verified.")
     def "tries to apply GE / CCUD extensions when in virtual context for any Maven version (#jdkCompatibleMavenVersion)"() {
         assumeTrue jdkCompatibleMavenVersion.isJvmVersionCompatible()
         assumeTrue GE_URL != null
@@ -684,6 +686,7 @@ class GradleEnterpriseExtensionApplicationTest extends BaseExtensionApplicationT
         jdkCompatibleMavenVersion << UNSUPPORTED_MAVEN_VERSIONS.findAll { it.mavenVersion == "3.1.1" }
     }
 
+    @Ignore("While the GE Maven extension version is hard-coded in the plugin, the behavior with older extension versions cannot be verified.")
     def "tries to apply GE / CCUD extensions when maven version check is disabled in a non-virtual context (#jdkCompatibleMavenVersion)"() {
         assumeTrue jdkCompatibleMavenVersion.isJvmVersionCompatible()
         assumeTrue GE_URL != null