Ejecutar tareas de ant con maven
Ejecutar tareas de ant con maven[editar]
Desde maven se pueden ejecutar tareas típicas de ant. Basta poner lo siguiente en el pom.xml
<plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <configuration> <tasks> <!-- Aqui cualquier cosa que trague un fichero build.xml entre <target> y </target> --> <cvs command="update"/> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> ... </plugins>