Is it possible to point to a specific settings file in order to override the default settings.xml being used by maven for a single command? Example:
mvn clea
You can simply use:
mvn --settings YourOwnSettings.xml clean install
or
mvn -s YourOwnSettings.xml clean install