Initial checking of the Native compilation plugin

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113198 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
knielsen
2003-03-26 19:32:13 +00:00
parent 4f1f51d20b
commit e28417b83d
12 changed files with 382 additions and 0 deletions

1
native/xdocs/.cvsignore Normal file
View File

@@ -0,0 +1 @@
stylesheets

16
native/xdocs/goals.xml Normal file
View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<document>
<properties>
<title>Maven Native Plug-in Goals</title>
<author email="apache@kav.dk">Kasper Nielsen</author>
</properties>
<body>
<goals>
<goal>
<name>native:jniheader</name>
<description>Generates JNI header files</description>
</goal>
</goals>
</body>
</document>

36
native/xdocs/index.xml Normal file
View File

@@ -0,0 +1,36 @@
<?xml version="1.0"?>
<document>
<properties>
<title>Maven Native Plug-in</title>
<author email="apache@kav.dk">Kasper Nielsen</author>
</properties>
<body>
<section name="Maven Native Plug-in">
<p>
This is a plugin that allows to compile c,c++,fortran code under maven with
different compilers such as gcc, msvc, bcc, ...
</p>
<p>
Currently, this plugin only supports generation of jni header files.
</p>
</section>
<section name="News">
<table>
<tr>
<th>Date</th>
<th>Description</th>
</tr>
<tr>
<td>26 Mar 2003</td>
<td>
Project Created
</td>
</tr>
</table>
</section>
</body>
</document>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="Maven Native Plugin">
<title>Maven Native Plugin</title>
<body>
<links>
<item name="Maven" href="http://maven.apache.org/"/>
</links>
<menu name="Overview">
<item href="/index.html" name="Overview"/>
<item href="/goals.html" name="Goals"/>
<item href="/properties.html" name="Properties"/>
<item href="/tasks.html" name="Tasks"/>
</menu>
</body>
</project>

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
</table>
</section>
</body>
</document>

23
native/xdocs/tasks.xml Normal file
View File

@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<document>
<properties>
<title>Tasks</title>
<author email="apache@kav.dk">Kasper Nielsen</author>
</properties>
<body>
<section name="Tasks">
<p>
Lists of todos and ideas for future versions.
</p>
<subsection name="Unassigned">
<p>
</p>
</subsection>
</section>
</body>
</document>