Submitted by: Joachim Bader add src includes/excludes git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115206 13f79535-47bb-0310-9956-ffa450edef68
118 lines
3.2 KiB
XML
118 lines
3.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
/*
|
|
* 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 Native Plugin Properties</title>
|
|
<author email="apache@kav.dk">Kasper Nielsen</author>
|
|
</properties>
|
|
<body>
|
|
<section name="Native Plugin Properties">
|
|
<table>
|
|
<tr>
|
|
<th>Property</th>
|
|
<th>Optional?</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jni.dest</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>Default value is
|
|
<code>${maven.build.dir}/jni</code>.</p>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>maven.native.src</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>Directory for native source files.
|
|
Default value is <code>src/unix</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.native.src.includes</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Specifies a list of patterns to include into the native compile process.
|
|
Default value is <code>**/*.h **/*.c **/*.cpp</code>.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.native.src.excludes</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Specifies a list of patterns to exclude from the native compile process.
|
|
Default value is empty.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.native.link</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>Sets the output file type. Supported values "executable",
|
|
"shared", and "static".
|
|
Default value is <code>shared</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.native.compiler.name</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>Sets compiler type.
|
|
Default value is <code>gcc</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.native.linker.name</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>Sets linker type.
|
|
Default value is <code>${maven.native.compiler.name}</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.native.debug</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>If set true, all targets will be built for debugging.
|
|
Default value is <code>true</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.native.include.os</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>JDK directory for plattform depended include files.
|
|
Default value is <code>linux</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</section>
|
|
</body>
|
|
</document> |