jib icon indicating copy to clipboard operation
jib copied to clipboard

Bump asm to 9.7

Open markusheiden opened this issue 1 year ago • 8 comments

Fixes #4220 🛠️ Fixes #1455 🛠️ for now

markusheiden avatar May 29 '24 07:05 markusheiden

Hey all, any update on when this will be merged? Thanks!

sg-tsrct avatar Jul 06 '24 16:07 sg-tsrct

hi, when it is expected to be merged?

tolyShevchukSixt avatar Sep 26 '24 09:09 tolyShevchukSixt

Do I have to do anything to this being merged?

markusheiden avatar Sep 27 '24 06:09 markusheiden

Waiting for this as well, to use jib with Java 23. Thx

Verdoso avatar Oct 24 '24 07:10 Verdoso

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

Verdoso avatar Oct 24 '24 08:10 Verdoso

Um.. I'm still waiting. It's been about half a year.

WonwooKang avatar Dec 05 '24 02:12 WonwooKang

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'
        }
    }
}

iwangxiaodong avatar Dec 07 '24 22:12 iwangxiaodong

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)

emouty avatar Jun 26 '25 15:06 emouty