+1 vote
in DevOps by

How Can I Use Ant To Run A Java Application?

1 Answer

0 votes
by

The following is an example to run a Java application in using ANT:

<target name=”run” depends=”some.target”,some.other.target”>

<java classname=”${run.class}” fork=”yes”>

<classpath>

<path refrid = “classpath” />

</classpath>

<jvmarg line=”${debug.jvmargs}”/>

<jvmarg line=”${my.jvmargs}”/> < BR>

<jvmarg line=”${run.jvmargs}”/>

<arg line=”${run.args}”/>

</java>

</target>

Related questions

+1 vote
asked May 9, 2020 in DevOps by Robindeniel
0 votes
asked Apr 5, 2020 in DevOps by ryan harris
...