Skip to content

Commit

Permalink
[MTOMCAT-280] Allow running deploy-only and redeploy-only goals witho…
Browse files Browse the repository at this point in the history
…ut pom file

Submitted by Dennis Lundberg

git-svn-id: https://svn.apache.org/repos/asf/tomcat/maven-plugin/trunk@1635637 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
olamy committed Oct 30, 2014
1 parent 382e831 commit 3666559
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class AbstractDeployWarMojo
/**
* The path of the WAR file to deploy.
*/
@Parameter( defaultValue = "${project.build.directory}/${project.build.finalName}.war", required = true )
@Parameter( defaultValue = "${project.build.directory}/${project.build.finalName}.war", property = "maven.tomcat.warFile", required = true )
private File warFile;

// ----------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class AbstractDeployWarMojo
/**
* The path of the WAR file to deploy.
*/
@Parameter( defaultValue = "${project.build.directory}/${project.build.finalName}.war", required = true )
@Parameter( defaultValue = "${project.build.directory}/${project.build.finalName}.war", property = "maven.tomcat.warFile", required = true )
private File warFile;

// ----------------------------------------------------------------------
Expand Down

0 comments on commit 3666559

Please sign in to comment.