Subject: Maven -- Configure
Author: Alex_Raj
Posted on: 10/10/2019 12:50:08 AM
Maven configuration occurs at 3 levels:
Project - most static configuration occurs in pom.xml
Installation - this is configuration added once for a Maven installation
User - this is configuration specific to a particular user in ${user.home}/.m2/settings.xml
The separation is quite clear - the project defines information that applies to the project, no matter who is building it, while the others both define settings for the current environment.
Replies:
References: