IDがあり、どのフェーズにもバインドされていない実行が設定されたプラグイン(antrun)があります。この実行をコマンドラインから直接実行できますか?
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>my-execution</id>
...
</execution>
</executions>
</plugin>
次のようなもので実行してください:
mvn my-execution
または少なくとも
mvn magicplugin:execute -DexecutionId=my-execution
mvn antrun:run
ますか?