Made the <code>maven.war.final.name</code> property public as it is required by several other plugins and before this change the only way is for these plugins was to call the non-public <code>war:init</code> goal.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115826 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol
2004-07-15 09:28:56 +00:00
parent 50c5a5c124
commit f60288f1f3
4 changed files with 21 additions and 7 deletions

View File

@@ -19,27 +19,38 @@
# -------------------------------------------------------------------
# War plugin.
# -------------------------------------------------------------------
maven.war.index=false
# Location of where the webapp is located in the source tree. The
# WEB-INF directory is located right under ${maven.war.src}.
maven.war.src=${maven.src.dir}/webapp
# Files to include and exclude from war
# Note: Files are relative to maven.war.src
maven.war.src.includes=**
maven.war.src.excludes=
# Location of web.xml file
maven.war.webxml=${maven.war.src}/WEB-INF/web.xml
# Classes to include and exclude from WEB-INF/classes
# Note: Classes are relative to build.dir
maven.war.classes.includes=**
maven.war.classes.excludes=**/package.html
# Location where the war will be created. Defaults to
# ${maven.build.dir}
maven.war.build.dir = ${maven.build.dir}
# Name of the generated war file (without the path).
maven.war.final.name = ${pom.artifactId}.war
# Location where the webapp will be created. Defaults to
# ${maven.war.build.dir}/${pom.artifactId}
maven.war.webapp.dir = ${maven.war.build.dir}/${pom.artifactId}
maven.war.tld.dir=WEB-INF/tld
# Location of the manifest file to be used
maven.war.manifest=${maven.war.src}/META-INF/MANIFEST.MF
maven.war.manifest=${maven.war.src}/META-INF/MANIFEST.MF