Question

For tomcat-maven-plugin I need add following block into settings.xml

<server>  
    <id>myserver</id>  
    <username>myusername</username>  
    <password>mypassword</password>  
</server>

but I'm unable to edit it as it is located somewhere in Amazon ec2.

Can I pass credentials through command line like -Dmaven.tomcat.username="someusername", etc.?

About this plugin http://mojo.codehaus.org/tomcat-maven-plugin/usage.html.

Was it helpful?

Solution

The deploy goal referenced in the docs you supplied says that username and password may be defined on the cmd line with these args:

-Dtomcat.username=<yourDeployUser> -Dtomcat.password=<yourDeployPassword>

See http://mojo.codehaus.org/tomcat-maven-plugin/deploy-mojo.html.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top