Maven Credential Helper
As a longtime Maven user, I have quite often been annoyed by one particular feature: Repository authentication. Since the beginning of Maven 2, this has been done the same way, by having a <server> node in the $HOME/.m2/settings.xml. This post will explore a new Maven extension I have created that attempts to avoid hard-coding these credentials in a static xml file. Before we get into that, however, we will take a look at how this works today. ...