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

link|improve this question

40% accept rate
Can't you just compile the sources you need from ant ? – Simeon Sep 28 '11 at 9:42
feedback

3 Answers

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.

link|improve this answer
feedback

An example of use of exec task would be:

<target name="buildProject" description="Builds the individual project">
    <exec dir="${source.dir}\${projectName}" executable="cmd">
        <arg value="${env.MAVEN_HOME}\bin\mvn.bat"/>
        <arg line="clean install" />
</exec>
</target>
link|improve this answer
feedback

You can use the exec task and call mvn compile as a terminal command. This is not ideal since you won't have any control over the execution, but otherwise I don't think there is a way to execute a Maven goal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.