https://github.com/oracle/graal/pull/3774 changed the signature of `ignoreResources` as follows: ```diff - public void ignoreResources(String pattern) { + public void ignoreResources(ConfigurationCondition condition, String pattern) { ``` This results in Quarkus throwing a `NoSuchMethodError` exception at the code generated by: https://github.com/quarkusio/quarkus/blob/9b1424df9aee33a2e89058d9d879d58ab8a80e3b/core/deployment/src/main/java/io/quarkus/deployment/steps/NativeImageAutoFeatureStep.java#L78-L80