maven 2 - pom - ¿Puede Maven ejecutar instrucciones de línea de comandos?
maven test junit (3)
En realidad, existe el complemento Exec Maven para estos casos.
¿Podemos vincular algunos comandos nativos del sistema operativo a los objetivos y / o fases de Maven?
No de forma nativa.
Sin embargo, al usar el complemento AntRun , puede especificar una tarea Ant (con Exec ) que ejecute un comando del sistema operativo durante la compilación.
<project>
...
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase> <!-- a lifecycle phase --> </phase>
<configuration>
<tasks>
<!--
Place any Ant task here. You can add anything
you can add between <target> and </target> in a
build.xml.
-->
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
</project>
Ver exec-maven-plugin para más detalles.