Posts

Showing posts from March, 2015

Deploying from Maven to AWS Beanstalk

Reference: http://beanstalker.ingenieux.com.br/beanstalk-maven-plugin/usage.html http://beanstalker.ingenieux.com.br/beanstalk-maven-plugin/configurations-and-templates.html Security Credentials Here, you have two options: Declare as a server on your $HOME/.m2/settings.xml: <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0                       http://maven.apache.org/xsd/settings-1.0.0.xsd">   <servers>     <server>     <id>aws.amazon.com</id>       <username>[your aws access key]</username>       <password>[your...