Skip to content

Conversation

markusheiden
Copy link
Contributor

@markusheiden markusheiden commented May 29, 2024

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

@sg-tsrct
Copy link

sg-tsrct commented Jul 6, 2024

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

@chanseokoh chanseokoh mentioned this pull request Sep 12, 2024
@tolyShevchukSixt
Copy link

hi, when it is expected to be merged?

@markusheiden
Copy link
Contributor Author

Do I have to do anything to this being merged?

@Verdoso
Copy link

Verdoso commented Oct 24, 2024

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

@Verdoso
Copy link

Verdoso commented Oct 24, 2024

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

@WonwooKang
Copy link

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

@iwangxiaodong
Copy link

iwangxiaodong commented Dec 7, 2024

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

@emouty
Copy link

emouty commented Jun 26, 2025

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Upgrade ASM to 9.6 to support Java 22 IllegalArgumentException from ASM