我不知道你的第二个问题是什么意思。也许他们并没有真正的关系。但我尝试从第一个开始回答这两个问题。
问题1:如何从另一个目标调用一个目标?
为此,您可以使用Apache Maven Invoker。
将 Maven 依赖项添加到您的插件中。
例如:
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-invoker</artifactId>
<version>2.2</version>
</dependency>
然后你可以这样调用另一个目标:
// parameters:
final Properties properties = new Properties();
properties.setProperty("example.param.one", exampleValueOne);
// prepare the execution:
final InvocationRequest invocationRequest = new DefaultInvocationRequest();
invocationRequest.setPomFile(new File(pom)); // pom could be an injected field annotated with '@Parameter(defaultValue = "${basedir}/pom.xml")' if you want to use the same pom for the second goal
invocationRequest.setGoals(Collections.singletonList("second-plugin:example-goal"));
invocationRequest.setProperties(properties);
// configure logging:
final Invoker invoker = new DefaultInvoker();
invoker.setOutputHandler(new LogOutputHandler(getLog())); // using getLog() here redirects all log output directly to the current console
// execute:
final InvocationResult invocationResult = invoker.execute(invocationRequest);
问题2:如何在mojos之间共享参数?
你的意思:
- 如何在一个插件内的多个目标之间共享参数?
(参见“问题 2.1 的答案”)
- 如何为执行的“child mojos”重用“meta mojo”的参数?
(参见“问题 2.2 的答案”)
问题 2.1 的答案:
您可以创建一个包含参数字段的抽象父类。
例子:
abstract class AbstractMyPluginMojo extends Abstract Mojo {
@Parameter(required = true)
private String someParam;
protected String getSomeParam() {
return someParam;
}
}
@Mojo(name = "first-mojo")
public class MyFirstMojo extends AbstractMyPluginMojo {
public final void execute() {
getLog().info("someParam: " + getSomeParam());
}
}
@Mojo(name = "second-mojo")
public class MySecondMojo extends AbstractMyPluginMojo {
public final void execute() {
getLog().info("someParam: " + getSomeParam());
}
}
您可以在几乎所有更大的 maven 插件中找到这种技术。例如查看Apache Maven 插件源。
问题 2.2 的答案:
您可以在我对问题 1 的回答中找到解决方案。如果您想在“meta mojo”中执行多个目标,您可以重用该properties
变量。