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

slawekjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new e873e0eb Manage ASM version 9.10 to support JDK 27
e873e0eb is described below

commit e873e0eb87775c0346b22cf6fe0c565e93e0b01f
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Thu May 21 23:24:54 2026 +0200

    Manage ASM version 9.10 to support JDK 27
---
 pom.xml                                                      | 12 ++++++++++++
 .../org/apache/maven/plugins/dependency/PropertiesMojo.java  |  2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 37f614fc..6551f7c1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -104,6 +104,18 @@ under the License.
     
<project.build.outputTimestamp>2026-05-16T08:21:34Z</project.build.outputTimestamp>
   </properties>
 
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <!-- check to remove with next version of maven-dependency-analyzer -->
+        <!-- manage version to support JDK 27 -->
+        <groupId>org.ow2.asm</groupId>
+        <artifactId>asm</artifactId>
+        <version>9.10</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
   <dependencies>
     <!-- maven -->
     <dependency>
diff --git 
a/src/main/java/org/apache/maven/plugins/dependency/PropertiesMojo.java 
b/src/main/java/org/apache/maven/plugins/dependency/PropertiesMojo.java
index 7e67274a..0d488055 100644
--- a/src/main/java/org/apache/maven/plugins/dependency/PropertiesMojo.java
+++ b/src/main/java/org/apache/maven/plugins/dependency/PropertiesMojo.java
@@ -91,7 +91,7 @@ public class PropertiesMojo extends AbstractMojo {
      *   &lt;/extraArtifact&gt;
      * &lt;/extraArtifacts&gt;
      * </pre>
-     * @since 3.10.1
+     * @since 3.11.0
      */
     @Parameter
     private List<ParamArtifact> extraArtifacts;

Reply via email to