GoogleContainerTools / jib

🏗 Build container images for your Java applications.
Apache License 2.0
13.7k stars 1.44k forks source link

Bump asm to 9.7 #4252

Open markusheiden opened 6 months ago

markusheiden commented 6 months ago

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

sg-tsrct commented 4 months ago

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

tolyShevchukSixt commented 2 months ago

hi, when it is expected to be merged?

markusheiden commented 2 months ago

Do I have to do anything to this being merged?

Verdoso commented 1 month ago

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

Verdoso commented 1 month ago

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