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

olamy pushed a commit to branch maven-compiler-plugin-3.x
in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git


The following commit(s) were added to refs/heads/maven-compiler-plugin-3.x by 
this push:
     new 1bf9e5a  Enforce asm version used here, to not depend on brittle 
transitive (#964)
1bf9e5a is described below

commit 1bf9e5afdee07dd9063e715540401580209ae7d8
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Fri Sep 19 09:18:24 2025 +1000

    Enforce asm version used here, to not depend on brittle transitive (#964)
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pom.xml b/pom.xml
index 42c6529..d967b69 100644
--- a/pom.xml
+++ b/pom.xml
@@ -106,6 +106,12 @@ under the License.
       <version>${mavenVersion}</version>
       <scope>provided</scope>
     </dependency>
+    <!-- not used directly but really needed at runtime and we cannot depend 
on transitive dependency -->
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+      <version>9.8</version>
+    </dependency>
     <dependency>
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-shared-utils</artifactId>
@@ -239,6 +245,7 @@ under the License.
             <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-invoker-plugin</artifactId>
+              <version>3.9.1</version>
               <executions>
                 <execution>
                   <id>integration-test</id>

Reply via email to