Configure Maven to always clean when running package/install

Configure-Maven-to-always-clean-when-running-package-install

Overview When developing Java applications with Maven, you need to package and deploy them many times. Most commonly, every time there is a change in code, you will package and deploy the app to the development environment again. The problem with this approach is for some reason, Maven doesn’t always recompile the code despite code … Read more

Run & Build ActiveMQ Docker Image

Run & Build ActiveMQ Docker Image

Recently, I needed to work with ActiveMQ. As a docker fan, I couldn’t find the latest version (5.17.2) docker image available. Thus, I decided to build one. It turned out that building a docker image for ActiveMQ is quite simple. For example, here is the Dockerfile for ActiveMQ version 5.17.2 on JRE 19, alpine: Build … Read more