mirror of https://github.com/apache/maven.git
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:
parent
e7d6dcf398
commit
075812942b
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue