maven-plugins/dist/xdocs/properties.xml
ltheussl dd22ab9f22 PR: MPDIST-15
Submitted by: Fabrizio Giustina
New maven.dist.src.include property


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@368477 13f79535-47bb-0310-9956-ffa450edef68
2006-01-12 21:32:21 +00:00

88 lines
3.5 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed 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.
*/
-->
<document>
<properties>
<title>Distribution Properties</title>
<author email="dion@apache.org">dIon Gillard</author>
</properties>
<body>
<section name="Distribution Settings">
<table>
<tr><th>Property</th><th>Optional?</th><th>Description</th></tr>
<tr>
<td>maven.dist.assembly.dir</td>
<td>yes - default is ${maven.build.dir}/${maven.final.name}</td>
<td>The base directory for the default assembly properties</td>
</tr>
<tr>
<td>maven.dist.bin.archive.dir</td>
<td>yes - default is ${maven.dist.assembly.dir}/bin</td>
<td>The directory where the binary archive is constructed from</td>
</tr>
<tr>
<td>maven.dist.src.archive.dir</td>
<td>yes - default is ${maven.dist.assembly.dir}/src/${maven.final.name}</td>
<td>The directory where the source archive is constructed from</td>
</tr>
<tr>
<td>maven.dist.bin.assembly.dir</td>
<td>yes - default is ${maven.dist.assembly.dir}/bin/${maven.final.name}</td>
<td>The directory where the binaries are copied to so that it can be archived</td>
</tr>
<tr>
<td>maven.dist.src.assembly.dir</td>
<td>yes - default is ${maven.dist.assembly.dir}/src/${maven.final.name}</td>
<td>The directory where the sources are copied to so that it can be archived</td>
</tr>
<tr>
<td>maven.dist.src.include</td>
<td>yes</td>
<td>Comma delimited list of additional files which should be included in the source distribution</td>
</tr>
<tr>
<td>maven.dist.dir</td>
<td>yes - default is ${maven.build.dir}/distributions</td>
<td>The target directory that the final archive is placed in</td>
</tr>
<tr>
<td>maven.dist.bin.artifact</td>
<td>yes - default is <code>${maven.final.name}.jar</code>.</td>
<td>The name of the binary artifact to include in distribution, relative to target dir.</td>
</tr>
<tr>
<td>maven.dist.crlf.filter</td>
<td>yes - default is <code>"**/*.txt"</code>.</td>
<td>Filter specifying files to convert to CRLF (Windows style) line endings in zip distributions.</td>
</tr>
<tr>
<td>maven.dist.lf.filter</td>
<td>yes - default is no filter applied (no change to any files).</td>
<td>Filter specifying files to convert to LF line endings in both tar
and zip distributions. This filter is applied before the crlf
filter, so in zip archives, the crlf filter will take precendence
for files that satisfy both filters.</td>
</tr>
</table>
</section>
</body>
</document>