Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 ant build.xml 文件,里面有一个编译目标。我经常发现当一个java文件被修改时,运行编译目标只会重新编译那个java文件。在控制台上,我看到
[javac] Compiling 1 source file to myproj\.classes
但是如何让 ant 显示它正在重新编译的源文件呢?
您是否尝试将verbose标志设置为true?
verbose
true
<javac ... verbose="true" />