InterviewSolution
Saved Bookmarks
| 1. |
Discuss the profile element in settings.xml file. |
|
Answer» The SETTINGS.xml PROFILE element is a trimmed VERSION of the pom.xml profile element. It is made up of the elements: activation, repositories, pluginRepositories, and PROPERTIES. These four components are the only ones included in the profile elements since they deal with the build system as a whole (which is what the settings.xml file is for), not individual project object MODEL settings. If a profile is activated from settings, its values will override any POM or profiles.xml profiles with the same ID.
|
|