http://blog.csdn.net/chinrui/article/details/66472815
http://www.importnew.com/20348.html
定义Mojo参数
定义一个参数很简单,只需要在Mojo中创建一个实例变量并增加恰当的注解。以下是带参数的简单Mojo示例:
1
2
3
4
5/**
* The greeting to display.
*/
@Parameter( property ="sayhi.greeting", defaultValue ="Hello World!")
privateString greeting;
注解之前的部分是参数说明。参数注解将变量声明为Mojo参数。注解的defaultValue参数定义了变量的默认值。这个值可以包含引用项目变量的表达式,如”{project.version}”(在“Parameter Expressions” document能看到更多)。property参数支持引用用户在命令行中通过-D指定的系统属性。