私は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;