This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-archiver.git
The following commit(s) were added to refs/heads/master by this push:
new 7e0b196 Bump Maven version to 4.0.0-rc-5
7e0b196 is described below
commit 7e0b196ec77d0fff391cb4cd772564b39d928a9a
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 7025ff2..a61d8d7 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();
}
}
}