Just a quick post on my break… I’ve had massive issues in the past with my Java tooling rebuilding / hotswapping / not-hotswapping-when-it-says-it-has and finally did some research to resolve the issues. Found a great article breaking down how & why these things happen, and how to avoid them. I’ll be writing my own post on how to setup your… Read more →
Build
Maven Archetypes
Spent a few minutes reading some official Maven docs regarding Archetype generation & followed a simple create-from-project tutorial using a toy project I’m working on as a skeleton. The pieces of it finally sunk into place! Essentially, it boils down to two steps: mvn archetype:create-from-project, followed by abstracting the generated archetype from target/generated-sources/archetype. After that, just polish and release! I’ve looked into archetype creation… Read more →