Mam wtyczkę (antrun) ze skonfigurowanym wykonaniem, która ma identyfikator i nie jest związana z żadną fazą. Czy mogę wykonać to wykonanie bezpośrednio z wiersza poleceń?
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>my-execution</id>
...
</execution>
</executions>
</plugin>
Uruchom go za pomocą czegoś takiego:
mvn my-execution
Lub przynajmniej
mvn magicplugin:execute -DexecutionId=my-execution
mvn antrun:run
?