I get the following error when trying to build with ant
Buildfile: C:\Program Files\eclipse\workspace\xith3d\build.xml
clean:
[echo] cleaning ./classes
recompile:
setup:
1 2 3 4 5 6
| compile: [echo] compiling source files [echo] javaexe: c:\javaSDK\bin\javac [javac] Compiling 354 source files to C:\Program Files\eclipse\workspace\xith3d\classes BUILD FAILED: file:C:/Program Files/eclipse/workspace/xith3d/build.xml:68: Error running javac.exe compiler Total time: 734 milliseconds |
I changed the following line so that I could be sure that it finds the java compiler
1
| <property name="javaexe" value="c:\javaSDK\bin\javac"/> |
I think I told it the exact directory to look in and yet it still gives me an error. Does anyone have any ideas? Thanks!