Is it possible to call or execute a Maven goal within an Ant script?
Say I have a ant target called 'distribute' and inside that target I need to call for a Maven 'compile' goal from another pom.xml.
Thanks - Dunith
feedback
|
|
You can also look at maven ant tasks. This allows you to run specific maven goals from within your ant build script. You can look at this SO question as well. | |||
|
feedback
|
|
An example of use of exec task would be:
| |||
|
feedback
|
|
You can use the exec task and call | |||
|
feedback
|