Foivos Zakkak
Foivos Zakkak
@Amatrelan if you create a Readme file in a module directory that is missing one and snippets are enabled it automatically inserts the snippet. Additionally, can you please add the...
[GR-40198] Provide public API for feature-based JNI / Resource / Proxy / Serialization registration.
> @zakkak if you stop using `@AutomaticFeature` (by using `--features ` instead) you should be able to get rid of requiring your feature to specify depending on `SerializationFeature` because `@AutomaticFeature`s...
FTR @mpeddada1 found that this issue is caused by registering `java.lang.management.ManagementFactory` and `java.lang.management.RuntimeMXBean` for reflection, removing these registrations seems to fix the issue (see https://github.com/GoogleCloudPlatform/native-image-support-java/pull/395). Note however that it might...
This is a Quarkus issue. Quarkus tries to access `com.oracle.svm.reflect.serialize.hosted.SerializationFeature` which has now been moved to `com.oracle.svm.hosted.reflect.serialize.SerializationFeature`. https://github.com/quarkusio/quarkus/blob/dee454976827387e088523585968717cc15c82dc/core/deployment/src/main/java/io/quarkus/deployment/steps/NativeImageFeatureStep.java#L591-L592 The reason it only fails with the `main` integration test is that...
@christianwimmer I am wondering if the refactoring in 22.3 could be used to make `SerializationFeature` public API as discussed in https://github.com/oracle/graal/discussions/4616?
Nice. I will be out of office most of August but I believe @galderz will be able to help you with that :)
The underlying issue has been [fixed in jdk17u-dev](https://github.com/openjdk/jdk17u-dev/pull/274) and is expected to land in OpenJDK 17.0.4 (July 19 2022). As a result we could consider this PR for inclusion in...
Thanks for checking @pejovica! For the record this was fixed in Quarkus with https://github.com/quarkusio/quarkus/pull/27366
Hi @oubidar-Abderrahim , I have already asked @olpaw to have a look at this after the GraalVM release so I am assigning this to him (AFAIK he is on PTO...
Hi @olpaw , can you please have a look at this once you find some time.