O'Reilly Answers is a community site for sharing knowledge, asking questions, and providing answers that brings together our customers, authors, editors, conference speakers, and Foo (Friends of O'Reilly). More »
While Maven is an improvement on Ant, Ant can still be useful when describing parts of the build process. Ant provides a set of tasks which can come in handy when you need to perform file operations o...
You need to execute an external Ant script in a Maven build.
Configure the run goal form the Maven AntRun plugin. Define any properties you wish to pass to the external Ant build, and then call the ...
You need to run an inline Ant script as a part of your Maven build.
Configure the run goal of the Maven AntRun plugin to execute an inline Ant script. The POM shown in configures the run goal to exe...