git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115845 13f79535-47bb-0310-9956-ffa450edef68
76 lines
2.5 KiB
XML
76 lines
2.5 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
/*
|
|
* 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 Struts Plug-in</title>
|
|
<author email="dion@multitask.com.au">dIon Gillard</author>
|
|
</properties>
|
|
|
|
<body>
|
|
<section name="Maven Struts Plug-in">
|
|
<p>
|
|
This document provides an overview of the Maven Struts Plug-in.
|
|
</p>
|
|
<subsection name="What it is">
|
|
<p>
|
|
The Struts Plug-in is the place where <a
|
|
href="http://struts.apache.org/">Struts</a> tools are found
|
|
in Maven.
|
|
</p>
|
|
<p>
|
|
At the moment it provides a validator to ensure a war file is valid. To
|
|
use this validator, simply add the following snippet to your maven.xml
|
|
</p>
|
|
<source><![CDATA[
|
|
<postGoal name="war">
|
|
<attainGoal name="struts"/>
|
|
</postGoal>]]></source>
|
|
</subsection>
|
|
<subsection name="Overview of the Struts Plug-in Reference Documentation">
|
|
<table>
|
|
<tr><th>Document</th><th>Description</th></tr>
|
|
<tr><td><a href="goals.html">Goals</a></td>
|
|
<td>
|
|
This document provides detailed information on the various
|
|
goals that are available as part of the Maven Struts Plug-in.
|
|
</td>
|
|
</tr>
|
|
<tr><td><a href="properties.html">Properties</a></td>
|
|
<td>
|
|
The behavior of the Maven Struts Plug-in can be altered via
|
|
properties. This document describes each property
|
|
available and the default used.
|
|
</td>
|
|
</tr>
|
|
<tr><td><a href="futures.html">Futures</a></td>
|
|
<td>
|
|
These are the current thoughts on additional items
|
|
that could or should be added to the plug-in.
|
|
They may or may not make it to an actual task list of a
|
|
developer.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</subsection>
|
|
</section>
|
|
</body>
|
|
</document>
|