jbossas / jboss-as-maven-plugin

Maven plugin to deploy applications to JBoss AS 7 (moved to https://github.com/wildfly/wildfly-maven-plugin)
74 stars 69 forks source link

Feature/deploy only #56

Closed mpellegrini closed 11 years ago

mpellegrini commented 11 years ago

Added a deploy-only goal and redeploy-only goal. These are equivalent to deploy and redeploy except that they do not first invoke the execution of the lifecycle phase 'package' prior to executing themselves.

The rationale for this is to handle scenarios where the packaging of the application has already been built and you want to simply just deploy the application without going thru the package process again. For example, within a CI environment you want to run mvn clean deploy and then as a post-build step you want to just deploy the application.

This is identical to the goals available in the tomcat7 maven plugin (http://tomcat.apache.org/maven-plugin-2.0/tomcat7-maven-plugin/plugin-info.html)

jamezp commented 11 years ago

Sorry for the long delay on this. I think it looks good. I'll squash it and merge it.

jamezp commented 11 years ago

We require that all contributions be made under the terms of the MIT License, http://www.opensource.org/licenses/mit-license.php. Do you agree to the these terms?

mpellegrini commented 11 years ago

Yes, I agree to submit this contribution under the terms of the MIT License. Thanks.

jamezp commented 11 years ago

Excellent, thanks for the contribution. The pull request has been squashed and merged.