How do I use maven command line to determine which settings.xml file Maven is picking up?
|
Start maven with -X option (debug) and examine the beginning of the output. There should be something like this:
(Original directory names are removed by me) |
|||
|
|
Your comment to cletus' (correct) answer implies that there are multiple Maven settings files involved. Maven always uses either one or two settings files. The global settings defined in (${M2_HOME}/conf/settings.xml) is always required. The user settings file (defined in ${user.home}/.m2/settings.xml) is optional. Any settings defined in the user settings take precedence over the corresponding global settings. You can override the location of the global and user settings from the command line, the following example will set the global settings to c:\global\settings.xml and the user settings to c:\user\settings.xml:
Currently there is no property or means to establish what user and global settings files were used from with Maven. To access these values, you would have to modify MavenCli and/or DefaultMavenSettingsBuilder to inject the file locations into the resolved Settings object. |
|||||
|
|
Quick and dirty method to determine if Maven is using desired settings.xml would be invalidate its xml and run some safe maven command that requires settings.xml. If it reads this settings.xml then Maven reports an error: "Error reading settings.xml..." |
|||||
|
|
The
|
|||
|
|
This is the configuration file for Maven. It can be specified at two levels:
|
|||||||
|
|
You can use the maven help plugin to tell you the contents of your user and global settings files.
will ask maven to spit out the combined global and user settings. |
||||
|
|