Severin Gehwolf
Severin Gehwolf
### Please add the exact image (with tag) that you are using eclipse-temurin:jdk-17 (any Temurin container, really) ### Please add the version of Docker you are running Any ### What...
Only do exploded build, required for JMOD artifact signing, when JDK version `N` such that `10 < N
Add the equivalent of --add-opens=java.base/java.lang=ALL-UNNAMED to the quarkus runner jars' MANIFEST.MF. The 3.9 update of JBoss Threads removes some Unsafe usages and replaces that by supported JDK APIs. The new...
### Describe the bug All GraalVM native integration tests are failing due to this issue. With JDK 24+ or better we see failures in native integration tests that look like...
We see new native-image integration tests failing because Quarkus isn't able to parse the following JDK 26-based GraalVM version: ``` $ native-image --version native-image 26 2026-03-17 GraalVM Runtime Environment GraalVM...
### Describe the bug By chance I was trying to build a quarkus-integration-test with a JDK 25 (JDK 25+26) and the maven build failed due to a hibernate/bytebuddy incompatibility (which...
### Description With https://github.com/quarkusio/quarkus/pull/51432 we've enabled complete reflection types unconditionally in quarkus. This means that once any GraalVM release > 25.0 comes out and becomes the default there is an...
### Describe the Issue When running the following program as native-image it fails at runtime with a `java.lang.ExceptionInInitializerError`: ``` import javax.xml.crypto.dsig.Transform; import javax.xml.crypto.dsig.XMLSignatureFactory; import javax.xml.crypto.dsig.spec.TransformParameterSpec; public class TestXMLSigTransform { public...