mirror of https://github.com/apache/maven.git
Adding @readonly annotations to those parameters which should never be directly configured by users...
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@165227 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f95706b14c
commit
165d4d440e
|
@ -64,6 +64,7 @@ public class AssemblyMojo
|
|||
/**
|
||||
* @parameter expression="${basedir}"
|
||||
* @required
|
||||
* @readonly
|
||||
*/
|
||||
private String basedir;
|
||||
|
||||
|
@ -86,11 +87,13 @@ public class AssemblyMojo
|
|||
/**
|
||||
* @parameter expression="${project.build.finalName}"
|
||||
* @required
|
||||
* @readonly
|
||||
*/
|
||||
private String finalName;
|
||||
|
||||
/**
|
||||
* @parameter expression="${project.artifacts}"
|
||||
* @readonly
|
||||
*/
|
||||
private Set dependencies;
|
||||
|
||||
|
|
Loading…
Reference in New Issue