git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@534128 13f79535-47bb-0310-9956-ffa450edef68
80 lines
3.0 KiB
Properties
80 lines
3.0 KiB
Properties
# -------------------------------------------------------------------
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership.
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
# (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# -------------------------------------------------------------------
|
|
|
|
# -------------------------------------------------------------------
|
|
# P L U G I N P R O P E R T I E S
|
|
# -------------------------------------------------------------------
|
|
# 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=
|
|
|
|
# The files to excludes when filtering is used
|
|
# Note: Files are relative to maven.war.src and are copied afterwards
|
|
# without filtering (use this option for binary files namely that will
|
|
# get corrupted if expansion is applied on them).
|
|
maven.war.expansion.excludes=
|
|
|
|
# Indicates whether token filtering should take
|
|
# place during the copy. Default is true.
|
|
maven.war.src.filtering=on
|
|
|
|
# Whether to perform property expansion for
|
|
# copied resources.
|
|
maven.war.property.expansion=false
|
|
|
|
# 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 maven.build.dest
|
|
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
|
|
|
|
# Specify if the web.xml contained in the source tree should
|
|
# overwrite the one in the generated webapp directory.
|
|
maven.war.webxml.overwrite=true
|
|
|
|
# Specify if resources contained in maven.war.webapp.dir should
|
|
# overwrite existing resources in the generated webapp directory.
|
|
maven.war.resources.overwrite=true
|