To configure the Maven settings of the Maestro Project Server:


This server is a server used by Maven in the deployment phase. For field definitions see: http://maven.apache.org/ref/current/maven-settings/settings.html#class_server.
.

You do not have to set the last two fields (File Permissions and Directory Permissions), however, if you choose to set them, valid values are octal file modes. It is recommended to set the File Permissions to 664 and the Directory Permissions to 775.

If you are behind a firewall, then you need to configure Maven to be aware of that. Entering your proxy server information on this screen will update your [maestro_home]/projectserver/conf/developer-client-settings.xml file and add information such as this:
<settings>
[...]
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>proxy.mycompany.com</host>
<port>8080</port>
<username>your-username</username>
<password>your-password</password>
</proxy>
</proxies>
[...]
</settings>
A complete list of the elements and a brief description of each can be found at http://maven.apache.org/maven-settings/settings.html.