This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch maven-4.0.x
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/maven-4.0.x by this push:
     new 8bedea9479 Fix MavenITConsumerPomBomFromSettingsRepoTest missing super 
constructor call (#12253)
8bedea9479 is described below

commit 8bedea9479918bdac71455635f0c51a2b5730f05
Author: Guillaume Nodet <[email protected]>
AuthorDate: Sat Jun 13 09:55:43 2026 +0200

    Fix MavenITConsumerPomBomFromSettingsRepoTest missing super constructor 
call (#12253)
    
    The test class was missing the required super(versionRange) constructor
    call, causing a compilation error on maven-4.0.x where
    AbstractMavenIntegrationTestCase has no no-arg constructor.
    
    Co-authored-by: Claude Opus 4.6 <[email protected]>
---
 .../apache/maven/it/MavenITConsumerPomBomFromSettingsRepoTest.java    | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITConsumerPomBomFromSettingsRepoTest.java
 
b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITConsumerPomBomFromSettingsRepoTest.java
index 22f9139109..c72b0598b6 100644
--- 
a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITConsumerPomBomFromSettingsRepoTest.java
+++ 
b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITConsumerPomBomFromSettingsRepoTest.java
@@ -45,6 +45,10 @@
  */
 class MavenITConsumerPomBomFromSettingsRepoTest extends 
AbstractMavenIntegrationTestCase {
 
+    MavenITConsumerPomBomFromSettingsRepoTest() {
+        super("[4.0.0-rc-1,)");
+    }
+
     /**
      * Verifies that consumer POM flattening works when the BOM is only 
available
      * from a repository defined in a settings.xml profile.

Reply via email to