我编写了一个生成代码并将其粘贴在{root}/target/generated-sources/foo下的mojo。当我执行时:
mvn clean install
我收到错误,指示生成的源未包含在构建路径中(生成的文件在那里,但在编译阶段未被拾取)。我从这个答案中了解到,我需要动态添加 {root}/target/generated-sources/foo 作为 POM 的源目录。问题是,我无法找到有关如何执行此操作的任何信息。
作为备份计划,我打算使用构建助手Maven插件,但如果可能的话,我希望在我的mojo中自动执行此操作。
我更喜欢把它添加到我的Mojo中:
/**
* The current project representation.
* @parameter expression="${project}"
* @required
* @readonly
*/
private MavenProject project;
/**
* Directory wherein generated source will be put; main, test, site, ... will be added implictly.
* @parameter expression="${outputDir}" default-value="${project.build.directory}/src-generated"
* @required
*/
private File outputDir;
显然,您可以更改default-value
以匹配自己的模式。
然后在execute()
方法中:
if (!settings.isInteractiveMode()) {
LOG.info("Adding " + outputDir.getAbsolutePath() + " to compile source root");
}
project.addCompileSourceRoot(outputDir.getAbsolutePath());