在My Custom Maven插件中“无法找到mojo错误”

时间:2013-02-07 12:24:37

标签: maven-plugin maven-plugin-development maven-mojo

我开发了一个自定义Maven插件,它有两个Mojos。我从我的IDE调试它,并使用其中一个目标,但它找不到另一个目标。它说:

 Unable to find the mojo 'replace' (or one of its required components)

这是我的mojos:

工作一:

/**
 * Goal for process
 *
 * @goal process
 * @phase compile
 *
 * @threadSafe
 */
public class ProcessMojo extends AbstractMojo {

不工作:

/**
 * Goal for replace
 *
 * @goal replace
 * @phase compile
 *
 * @threadSafe
 */
public class ReplaceMojo extends AbstractMojo {

可能是什么原因,任何想法?

1 个答案:

答案 0 :(得分:0)

这可能是因为我的魔力中的某些东西,我已经重新编码并解决了问题。