+1 vote
in DevOps by
Explain How To Use Runtime In Ant?

1 Answer

0 votes
by
There is no need to use Runtime in ant. Because ant has Runtime counterpart by name ExecTask. ExecTask is in the package org.apache.tools.ant.taskdefs. The Task is created by using the code in the customized ant Task. The code snippet is as follows:

ExecTask execTask = (ExecTask)project.createTask (“exec”);

Related questions

+1 vote
asked May 9, 2020 in DevOps by Robindeniel
+1 vote
asked May 9, 2020 in DevOps by Robindeniel
...