Bump asm to 9.7
Fixes #4220 🛠️ Fixes #1455 🛠️ for now
Hey all, any update on when this will be merged? Thanks!
hi, when it is expected to be merged?
Do I have to do anything to this being merged?
Waiting for this as well, to use jib with Java 23. Thx
In case it helps someone, in mycase, it worked by doing this:
<jib-maven-plugin.version>3.4.4</jib-maven-plugin.version>
<asm.version>9.7.1</asm.version>
...
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>${jib-maven-plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>${asm.version}</version>
</dependency>
</dependencies>
<configuration>
...
Cheers
Um.. I'm still waiting. It's been about half a year.
Um.. I'm still waiting. It's been about half a year.
if use gradle:
buildscript {
configurations.all {
resolutionStrategy {
force 'org.ow2.asm:asm:9.7.1'
}
}
}
It would be nice to edit this pr to update asm to 9.8 in order to prepare for java 25 arrival (and to ease usage for non LTS versions after 21)