-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Signature of com.oracle.svm.core.configure.ResourcesRegistry.ignoreResources changed in GraalVM/Mandrel 21.3-dev #20226
Comments
/cc @galderz |
FTR oracle/graal#3803 will bring back the methods as deprecated default implementaions. |
zakkak
added a commit
to zakkak/quarkus
that referenced
this issue
Sep 17, 2021
oracle/graal#3774 changed the signature of ignoreResources as follows: ``` - 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 NativeImageAutoFeatureStep This patch looks for the right method based on the GraalVM/Mandrel version. Closes: quarkusio#20226
zakkak
added a commit
to zakkak/quarkus
that referenced
this issue
Sep 21, 2021
oracle/graal#3774 changed the signature of ignoreResources as follows: ``` - 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 NativeImageAutoFeatureStep This patch looks for the right method based on the GraalVM/Mandrel version. Closes: quarkusio#20226
zakkak
added a commit
to zakkak/quarkus
that referenced
this issue
Sep 21, 2021
oracle/graal#3774 changed the signature of ignoreResources as follows: ``` - 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 NativeImageAutoFeatureStep This patch looks for the right method based on the GraalVM/Mandrel version. Closes: quarkusio#20226
geoand
pushed a commit
to geoand/quarkus
that referenced
this issue
Sep 28, 2021
oracle/graal#3774 changed the signature of ignoreResources as follows: ``` - 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 NativeImageAutoFeatureStep This patch looks for the right method based on the GraalVM/Mandrel version. Closes: quarkusio#20226 (cherry picked from commit b5361d8)
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Dec 1, 2021
oracle/graal#3774 changed the signature of ignoreResources as follows: ``` - 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 NativeImageAutoFeatureStep This patch looks for the right method based on the GraalVM/Mandrel version. Closes: quarkusio#20226 (cherry picked from commit b5361d8)
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Dec 1, 2021
oracle/graal#3774 changed the signature of ignoreResources as follows: ``` - 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 NativeImageAutoFeatureStep This patch looks for the right method based on the GraalVM/Mandrel version. Closes: quarkusio#20226 (cherry picked from commit b5361d8)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
oracle/graal#3774 changed the signature of
ignoreResources
as follows:This results in Quarkus throwing a
NoSuchMethodError
exception at the code generated by:quarkus/core/deployment/src/main/java/io/quarkus/deployment/steps/NativeImageAutoFeatureStep.java
Lines 78 to 80 in 9b1424d
The text was updated successfully, but these errors were encountered: