Reputation: 411
<javac srcdir="${src}"
destdir="${build}"
classpath="xyz.jar"
debug="on"
source="1.4"
/>
What command should I execute on the command line to get the same effect as the above code. This code is copied from an ant build file.
Upvotes: 2
Views: 1160
Reputation: 140041
Invoke ant with the -v
flag for verbose and it should output the exact command send to javac
.
Upvotes: 3