Github user mfenes commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/469#discussion_r169691663
--- Diff: build.xml ---
@@ -1861,4 +1861,18 @@
xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant">
<delete dir="${build.dir.eclipse}" />
</target>
+ <target name="print_compile_classpath">
+ <pathconvert pathsep="${line.separator}| |-- "
property="echo.compile.classpath" refid="java.classpath"/>
--- End diff --
The difference between the two is that the one I used prints the paths in a
pretty printed way, while the "one-liner" prints all paths continuously which
is hard to read.
---