Github Pages and authentication, we are not that far by Romain Manni-Bucau, 2019-12-12

Github does not enable to publish a website to share with your team (Github Pages) using autentication to ensure only people able to see the pages can actually do it. Let see how to workaround that issue.

Add Microprofile healthchecks programmatically from an extension with CDI 2! by Romain Manni-Bucau, 2019-11-29

Microprofile health integrates smoothly with kubernetes but how to ensure any extension can register as many as check as needed programmatically without requiring to materialize them all one by one? Let see how to do it very easily.

Maven Shade plugin: ensure your sources are relocated too! by Romain Manni-Bucau, 2019-11-22

Maven Shade plugin is a great tool to customize binaries but sources don’t always match the configured relocations. Let see how to fix it in a few seconds.

Create your own GraalVM native-image custom @Option in your Features by Romain Manni-Bucau, 2019-11-13

GraalVM native-image comes with svm which is its SDK to extend the framework. Let see how to create a custom feature and add to GraalVM custom CLI options.

How to customize a docker image with Testcontainers by Romain Manni-Bucau, 2019-11-08

Testcontainers is a great testing library to ochestrate docker containers with JUnit5. But it also hides some nice utilities wrapping docker client which can help to prepare volatile containers and stick to official images instead of building custom ones.