This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch mvn4rc5 in repository https://gitbox.apache.org/repos/asf/maven-archiver.git
commit ce58ac93a33a87186251b9ac5064e404b50d665e Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Sun Jun 14 13:45:11 2026 +0200 Bump Maven version to 4.0.0-rc-5 --- pom.xml | 2 +- src/main/java/org/apache/maven/shared/archiver/BuildHelper.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 236353f..c5e0128 100644 --- a/pom.xml +++ b/pom.xml @@ -55,7 +55,7 @@ <properties> <javaVersion>17</javaVersion> - <mavenVersion>4.0.0-rc-4</mavenVersion> + <mavenVersion>4.0.0-rc-5</mavenVersion> <project.build.outputTimestamp>2025-10-05T14:26:08Z</project.build.outputTimestamp> </properties> diff --git a/src/main/java/org/apache/maven/shared/archiver/BuildHelper.java b/src/main/java/org/apache/maven/shared/archiver/BuildHelper.java index 090cb8b..9b79364 100644 --- a/src/main/java/org/apache/maven/shared/archiver/BuildHelper.java +++ b/src/main/java/org/apache/maven/shared/archiver/BuildHelper.java @@ -120,10 +120,10 @@ public class BuildHelper { XmlNode pluginConf = plugin.getConfiguration(); if (pluginConf != null) { - XmlNode target = pluginConf.getChild(parameter); + XmlNode target = pluginConf.child(parameter); if (target != null) { - return target.getValue(); + return target.value(); } } }
