juliojgd commented on issue #955:
URL: 
https://github.com/apache/maven-plugin-tools/issues/955#issuecomment-3380139565

   @uhoefel I had this same problem with maven plugin tool 3.15.1 in my project 
and it seems that forcing `org.ow2.asm:asm*` versions to 9.8 in the parent POM 
fixed the build.
   
   ```xml
   <project>
    <!-- More content -->
     <build>
      <!-- More content -->
       <pluginManagement>
        <!-- More content -->
        <plugins>
          <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-plugin-plugin</artifactId>
             <version>3.15.1</version>
             <dependencies>
               <dependency>
                 <groupId>org.ow2.asm</groupId>
                 <artifactId>asm</artifactId>
                 <version>9.8</version>
               </dependency>
               <dependency>
                 <groupId>org.ow2.asm</groupId>
                 <artifactId>asm-util</artifactId>
                 <version>9.8</version>
               </dependency>
               <dependency>
                 <groupId>org.ow2.asm</groupId>
                 <artifactId>asm-tree</artifactId>
                 <version>9.8</version>
               </dependency>
               <dependency>
                 <groupId>org.ow2.asm</groupId>
                 <artifactId>asm-analysis</artifactId>
                 <version>9.8</version>
               </dependency>
             </dependencies>
           </plugin>
            <!-- More content -->
          </plugins>
        </pluginManagement>
       </build>
     </project>
   ```
   
   So I think `maven-plugin-tools` **DOES NEED to upgrade the 
`org.ow2.asm:asm*` dependencies at least to 9.8** in order to properly support 
Java 25
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to