我正在编写一个 Maven 插件,并且我正在为所有参数使用默认值,例如:
/**
* The file with the site structure.
*
* @parameter expression="${generateSite.siteFile}" default-value="${basedir}/src/oda/site.xml"
*/
private File siteFile;
现在我添加了一个新参数,它是一个集合。有没有办法为如下参数设置默认值?
/**
* A list of file/directory names to exclude in the processing.
*
* @parameter ????
*/
private Set<String> excludes;