This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch fix/consumer-pom-test-constructor in repository https://gitbox.apache.org/repos/asf/maven.git
commit c70d625e4cd0d270a1e5f0ff9d974d22e9afba1e Author: Guillaume Nodet <[email protected]> AuthorDate: Fri Jun 12 23:09:20 2026 +0200 Fix MavenITConsumerPomBomFromSettingsRepoTest missing super constructor call 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.
