From 3d429b03d85a5dcca2a3a5281d7b8318657253cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 16:43:16 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump the development-dependencies group with 2 updates Bumps the development-dependencies group with 2 updates: [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) and [org.graalvm.buildtools:native-maven-plugin](https://github.com/graalvm/native-build-tools). Updates `org.codehaus.mojo:flatten-maven-plugin` from 1.7.3 to 1.8.0 - [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases) - [Commits](https://github.com/mojohaus/flatten-maven-plugin/compare/1.7.3...1.8.0) Updates `org.graalvm.buildtools:native-maven-plugin` from 1.1.5 to 1.1.6 - [Release notes](https://github.com/graalvm/native-build-tools/releases) - [Commits](https://github.com/graalvm/native-build-tools/compare/1.1.5...1.1.6) --- updated-dependencies: - dependency-name: org.codehaus.mojo:flatten-maven-plugin dependency-version: 1.8.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: org.graalvm.buildtools:native-maven-plugin dependency-version: 1.1.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] --- nitrite-native-tests/pom.xml | 2 +- pom.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nitrite-native-tests/pom.xml b/nitrite-native-tests/pom.xml index 7c70430b..db7ed9f1 100644 --- a/nitrite-native-tests/pom.xml +++ b/nitrite-native-tests/pom.xml @@ -22,7 +22,7 @@ 3.27.7 6.0.0 - 1.1.5 + 1.1.6 diff --git a/pom.xml b/pom.xml index 01a09401..bad2a487 100644 --- a/pom.xml +++ b/pom.xml @@ -559,7 +559,7 @@ org.codehaus.mojo flatten-maven-plugin - 1.7.3 + 1.8.0 true ${flatten.mode} @@ -635,7 +635,7 @@ org.codehaus.mojo flatten-maven-plugin - 1.7.3 + 1.8.0 true ${flatten.mode} From 88d1eb0487b426f4ca5908b3bd7c175283963c56 Mon Sep 17 00:00:00 2001 From: Anindya Chatterjee Date: Fri, 7 Aug 2026 11:50:54 +0530 Subject: [PATCH 2/2] fix(deps-dev): use native-maven-plugin 1.1.7 instead of 1.1.6 1.1.6 fails the native test job at plugin execution with A required class was missing while executing org.graalvm.buildtools:native-maven-plugin:1.1.6:test: org/apache/maven/shared/utils/logging/MessageUtils 1.1.6 is the only release which references MessageUtils, and it does not declare org.apache.maven.shared:maven-shared-utils, so the class is absent from the plugin realm - the realm is built self-first here because the plugin is declared with true. Upstream dropped the reference again in 1.1.7 (checked: 1.1.5 and 1.1.7 contain no reference to the class, 1.1.6 contains one), so taking 1.1.7 fixes the job without pinning a workaround dependency. Co-Authored-By: Claude Opus 5 --- nitrite-native-tests/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nitrite-native-tests/pom.xml b/nitrite-native-tests/pom.xml index db7ed9f1..c886611d 100644 --- a/nitrite-native-tests/pom.xml +++ b/nitrite-native-tests/pom.xml @@ -22,7 +22,7 @@ 3.27.7 6.0.0 - 1.1.6 + 1.1.7