This is which I would like to change to something didn't calling an unneeded jvm. I want to call mvn from the jvm running ant.

<target name="theTarget" depends="clean">
    <exec executable="cmd.exe">
        <arg line="/c mvn.bat release:prepare release:perform -B" />
    </exec>
</target>

Practically I am thinking about the inverse of the maven ant plugin. I need some like "ant maven plugin". Does it exist? What is its name?

有帮助吗?

解决方案

You will probably want maven ant tasks.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top