git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114791 13f79535-47bb-0310-9956-ffa450edef68
84 lines
2.5 KiB
XML
84 lines
2.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>Maven Castor Plugin Properties</title>
|
|
<author email="jason@zenplex.com">Jason van Zyl</author>
|
|
<author email="tma@netspace.net.au">Tim Anderson</author>
|
|
</properties>
|
|
|
|
<body>
|
|
<section name="Maven Castor Plugin Settings">
|
|
<table>
|
|
<tr>
|
|
<th>Property name</th>
|
|
<th>Description</th>
|
|
<th>Optional?</th>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.castor.properties.dir</td>
|
|
<td>
|
|
Specifies the directory to locate the
|
|
<em>castorbuilder.properties</em> file.
|
|
</td>
|
|
<td>Yes</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.castor.dest</td>
|
|
<td>
|
|
Specifies the directory to place generated sources.<br/>
|
|
Defaults value is ${maven.build.dir}/castor/src
|
|
</td>
|
|
<td>Yes</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.castor.tstamp</td>
|
|
<td>
|
|
Specifies the directory to output timestamp files.
|
|
These are used to track source modifications against the
|
|
generated files, to avoid unecessary generation.<br/>
|
|
Default value is ${maven.build.dir}/castor/tstamp
|
|
</td>
|
|
<td>Yes</td>
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
<section name="Other properties used">
|
|
<table>
|
|
<tr>
|
|
<th>Property name</th>
|
|
<th>Description</th>
|
|
<th>Optional?</th>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.compile.src.set</td>
|
|
<td>
|
|
The source directories maven uses to compile java code.
|
|
The Castor plugin adds the directory it generates code to
|
|
this path, so that generated code is compiled seamlessly
|
|
</td>
|
|
<td>Yes</td>
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
</body>
|
|
</document>
|