문제

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