Building with ant version : "Apache Ant(TM) version 1.9.9 compiled on June 29 2017"
And Javac version: "javac 10.0.1",
is not generating debug info even when specified debug="true" in the
build.xml and it also generates many warnings that has to do with java 10
which I will fix in the source code in the future
In the mean time,
To solve this I created build.sh that runs the javac command to build this project and ignore warnings
and then run "ant jar" which will only generate the jar file, as the class files were already built.
Building with ant version : "Apache Ant(TM) version 1.9.9 compiled on June 29 2017" And Javac version: "javac 10.0.1", is not generating debug info even when specified debug="true" in the build.xml and it also generates many warnings that has to do with java 10 which I will fix in the source code in the future In the mean time, To solve this I created build.sh that runs the javac command to build this project and ignore warnings and then run "ant jar" which will only generate the jar file, as the class files were already built.