Jérémie Bresson

Results 261 comments of Jérémie Bresson

I had a similar problem when running the jreleaser `1.19.0` with an old gradle version `7.3.3`: ``` * What went wrong: A problem occurred configuring root project ''. > java.util.concurrent.ExecutionException:...

Starting to use jreleaser is a very good opportunity to discover all the outdated gradle versions... 😆 With `8.0` same error: ``` * What went wrong: A problem occurred configuring...

Second approach, instead of using the API `TypesafeGraphQLClientBuilder`, it seems that the `VertxTypesafeGraphQLClientBuilder` allows setting `options` There is the `HttpClientOptions`, but this also have a sub-class `WebClientOptions` where the UserAgent...

My current work-around is: ```java Vertx vertx = VertxManager.get(); WebClientOptions options = new WebClientOptions().setUserAgent("My Custom User Agent"); var httpClient = vertx.createHttpClient(options); var client = WebClient.wrap(httpClient, options); WorkitemClientApi gqlApi = new...

The same approach seems to work with Quarkus as well. I was afraid the Vertx stuff would work differently. --- For the dynamic client: ```java Vertx vertx = VertxManager.get(); WebClientOptions...

> If you want to try doing it, feel free… I am not sure to understand what needs to be extended to make available. Add a `userAgent(String value)` method in...

This issue is known and quite similar to https://github.com/jenkinsci/gitlab-branch-source-plugin/issues/259, but a little bit easier. Now (Aug 2023) that https://gitlab.com/gitlab-org/gitlab/-/issues/344666 was solved on the GitLab side, probably the `gitlab-branch-source-plugin` should save...

I just implemented the unit test in a10cd252467d08d276eadc1f8f05eafb91216692, but I would need some pointer on "logic to find the original form name" because right now I have no clue how...

> This won't work for bean params, though, but we can add support for them later, let's not over-engineer this for now. This is an other potential issue, but right...

Thank you for the pointer, I was not aware of the `@Valid` annotation. So for the second example of the page https://docs.quarkiverse.io/quarkus-renarde/dev/advanced.html#_the_endpoint (with the FormData). This applies the validations: ```java...