Guillaume Raffin

Results 97 comments of Guillaume Raffin

Here you are! > ~~java cup~~ oops, I mean: > regular coffee :coffee: :)

Yes I can! `sbt install` fails with `(bloopgun / Graalvm-native-image / packageBin) java.io.IOException: Cannot run program "native-image" (...) no such file or directory` So I've run `sbt createLocalArchPackage` instead to...

> Could the issues you're running into be caused because your previous installation is living together with the new installation? Unfortunately no, I've got the same results when I first...

First problem fixed by installing graalvm and graalvm-native-image (of course! should have thought of that earlier...). But 8 gigs of RAM don't seem to be enough to complete the building...

> Keep in mind that you should not be compiling to GraalVM during the installation process, we compile to GraalVM native in CI/CD during the install step that generates all...

PR #1284 should make the package work again! Sorry I couldn't fully test it before the release.

Collections benefit from a custom logic, Maps aren't handled by `ObjectConverter.toObject` for now. I'll fix it for the next release. Thanks for reporting! Meanwhile, you can replace the map by...

Do you mean serializing/deserializing a field whose type is an interface? For example: ```java interface MyInterface { String data(); } class MyImpl implements MyInterface { private String data; public MyImpl(String...

Hello, It seems like a BOM problem: if the file's encoding is misconfigured, the editor will insert a few extra bytes at the beginning of the file (named "BOM" for...

On a second thought, NightConfig could detect the BOM and skip it. Adding this to my todo list!