Andy Damevin
Andy Damevin
Default in parent is `LANG="C.utf8"`: - https://catalog.redhat.com/software/containers/ubi8/openjdk-17/618bdbf34ae3739687568813?container-tabs=dockerfile - https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4?container-tabs=dockerfile According to https://access.redhat.com/solutions/5211991 , the UBI image has glibc-minimal-langpack is installed by default for C, POSIX and C.UTF-8 locales. To use...
Using only `verify` in mvn build and release won't let codestart tests pass. Reason is that the tests are using the actual artifacts which should be installed in the local...
A cleaner fix for the issue described in https://github.com/kiegroup/kogito-runtimes/pull/2093 Temporary override version from kogito-dependencies-bom to make sure it is api compatible with quarkus-devtools-testing This reverts commit 13155de (from https://github.com/kiegroup/kogito-runtimes/pull/2093)
Thanks for your very good plugin! In my case, the weight of each words is a number of occurrences. I use the weightFactor function in order to normalize it. The...
https://github.com/vert-x3/vertx-web/blob/45a280209f70daf7f760de04ef4becadb52630f4/vertx-web/src/main/java/io/vertx/ext/web/handler/impl/StaticHandlerImpl.java#L170 I think it would make sense to respond to http OPTIONS method: https://stackoverflow.com/questions/38582773/proper-http-methods-for-serving-static-content
### Description It would be nice extension codestart to have user customizable data. This is already possible in codestarts but not yet connected in the tooling. It would behave like...
👆 The use case is the HxController
in the codestart we have: ```java // in DEV mode we seed some data if(LaunchMode.current() == LaunchMode.DEVELOPMENT) { Note a = new Note(); a.task = "First item"; a.persist(); Note b...
Qute is compatible with RR why not Renarde?
Currently, it works like this: ```java @POST public void add(@RestForm @NotBlank String title, @RestForm @NotBlank String note) { // If validation fails, redirect to the todos page (with errors propagated)...