【发布时间】:2013-09-11 00:34:20
【问题描述】:
如果我配置了一个执行多次的 maven 插件:
<plugin>
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>...</version>
<executions>
<execution>
<id>execution-1</id>
<goals>
<goal>...</goal>
</goals>
<configuration>
...
</configuration>
<phase>...</phase>
</execution>
<execution>
<id>execution-2</id>
<goals>
<goal>...</goal>
</goals>
<configuration>
...
</configuration>
<phase>...</phase>
</execution>
</executions>
<configuration>
...
</configuration>
</plugin>
我可以指定这些执行之一在命令行上运行(不将 id 更改为 default-cli)吗?
【问题讨论】:
-
我认为答案是 否,但我愿意学习新的东西 :) 你会关心个人资料吗?
标签: maven