4

我编写了一个生成代码并将其粘贴在{root}/target/generated-sources/foo下的 mojo 。当我执行时:

mvn clean install

我收到错误,表明生成的源没有包含在构建路径中(生成的文件在那里,但在编译阶段没有被拾取)。我从这个答案中了解到,我需要动态添加{root}/target/generated-sources/foo作为 POM 的源目录。问题是,我无法找到有关如何执行此操作的任何信息。

作为备用计划,我打算使用 Build Helper Maven 插件,但我希望尽可能在我的 mojo 中自动执行此操作。

4

1 回答 1

2

我更喜欢将其添加到我的 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());
于 2012-08-13T09:47:17.263 回答