Cleaned up field-level annotations. This will be the flagship example for the new annotation style.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@164944 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2005-04-27 04:32:32 +00:00
parent e7d6dcf398
commit 075812942b
2 changed files with 8 additions and 12 deletions

View File

@ -44,22 +44,20 @@ public class ResourcesMojo
extends AbstractPlugin
{
/**
* The output directory into which to copy the resources.
*
* @parameter name="outputDirectory"
* type="String"
* required="true"
* validator=""
* expression="${project.build.outputDirectory}"
* description=""
*/
private String outputDirectory;
/**
* The list of resources we want to transfer.
*
* @parameter name="resources"
* type="List"
* required="true"
* validator=""
* expression="${project.build.resources}"
* description=""
*/
private List resources;

View File

@ -31,22 +31,20 @@ public class TestResourcesMojo
extends ResourcesMojo
{
/**
* The output directory into which to copy the resources.
*
* @parameter name="outputDirectory"
* type="String"
* required="true"
* validator=""
* expression="${project.build.testOutputDirectory}"
* description=""
*/
private String outputDirectory;
/**
* The list of resources we want to transfer.
*
* @parameter name="resources"
* type="List"
* required="true"
* validator=""
* expression="${project.build.testResources}"
* description=""
*/
private List resources;