maven-plugins/war/plugin.properties
michal 508910ff0e war:war goal is simply packaging (using ant jar task) the directory created by war:webapp goal.
This change simplifies the customization of processing and removes code duplication.

Fix for Maven-481 - tlds deps can be bundled in wars


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113573 13f79535-47bb-0310-9956-ffa450edef68
2003-07-02 10:34:48 +00:00

22 lines
980 B
Properties

# -------------------------------------------------------------------
# P L U G I N P R O P E R T I E S
# -------------------------------------------------------------------
# War plugin.
# -------------------------------------------------------------------
# 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
# 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}
# 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