如果我配置一个执行多次的 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)吗?