So I added Jasper to my classpath, got Apache ant installed and everything seems fine. I went to hsqldb directory and run "ant runServer" & "ant runManager" and both started up. I went to a sample report and ran "ant -p" and it gave me syntax errors, it did not generate the report correctly. That is problem #1. Problem #2 is soon after I tried that, I went back into hsqldb and did the "ant runServer"/"ant runManager" commands, and it shoots out "-bash: ant: command not found" - I restarted the server, which is Linux, and still have the same problem.
Any help is appreciated!
issue an
whereis ant
. If it can't find ant, then it is not installed in a location in your PATH.If it is not installed in a directory in the PATH then either add this location to your PATH or try to execute ant with full path like
/usr/local/bin/ant runServer
.