I am getting errors like this for almost all files trying to be compiled. Due to this, none of the class files are being created and thus the jar is unusable.
Any suggestions?
I didn't change the build.bat file at all but here it is anyway.
javac -target 1.6 com\ximpleware\*.java
javac -target 1.6 com\ximpleware\xpath\*.java
javac -target 1.6 com\ximpleware\parser\*.java
javac -target 1.6 com\ximpleware\transcode\*.java
javac -target 1.6 com\ximpleware\extended\*.java
javac -target 1.6 com\ximpleware\extended\xpath\*.java
javac -target 1.6 com\ximpleware\extended\parser\*.java
javac -target 1.6 java_cup\*.java
javac -target 1.6 java_cup\runtime\*.java
jar -cvf vtd-xml.jar com\ximpleware\*.class com\ximpleware\xpath\*.class com\ximpleware\parser\*.class com\ximpleware\transcode\*.class java_cup\*.class java_cup\runtime\*.class com\ximpleware\extended\*.class com\ximpleware\extended\xpath\*.class com\ximpleware\extended\parser\*.class
del/S *.class
All of proposed paths are there.