We use Maven to configure our web applications but some properties might be specific for your system. You can override them in the following way.
Step-by-step guide
- Go to your home directory and find the folder ".m2".
- In there might be a file called "settings.xml".
- If there is no such file, create a new file called settings.xml.
Open that file. If it's empty add the following lines to it
<settings> </settings>
Then add the following:
<profiles> <profile> <id>dev</id> <properties> <property-you-like-to-override>value</property-you-like-to-override> </properties> </profile> </profiles>
Replace "property-you-like-to-override" with the name of the property you want to override, and "value" with the value.
Related articles