alexis GAYTE

Results 20 comments of alexis GAYTE

Hi, Thanks for the quick turn around. I haven't found any test template, However any CreateIndexRequest deserialization will fail. Here a simple example of the issue: ``` JacksonJsonpMapper mapper =...

I have created a builder for the builder using the internal Serialiser. If that can help.

Yes, that is mainly the idea. However in my case I had to build a builder for the builder : ``` @JsonpDeserializable public final class CreateIndexRequestBuilder extends CreateIndexRequest.Builder { private...

I am not sure what you mean by that, I have done it 3 months ago and moved on, bear with me. The main problem I had, is the definition...

Yes of course, the property is part of the json. What ever you do with the deserialization you will get this error. Basically you can't deserialised, if I recall.

For Information this plugin is working for me : "io.hndrs.gradle:gradle-git-properties-plugin:1.0.0" https://plugins.gradle.org/plugin/io.hndrs.git-properties

For anyone facing this issue. Here my work around. Work around is to monkey patch the java.net.URI class Uncomment lowMask and highMask. replacing L_MARK and H_MARK to add your relaxed...

with Java 8, just add the tweaked java.net.URI into your project. It will override it. With java 9 + you will need to patch the java.base module. something like that...