Hello
Just a quick question.
After the build process when it breaks
I get this message
BUILD FAILED
C:\home\sandbox\Project\build\build.xml:137: Compile failed, messages should
have been provided.
1) What does mean and refer too ?
2) How can I fix this ???
Line 137 has the following code: "<classpath refid="compile.classpath"/> "
in the xml sequence:
<!--
=================================================================== -->
<!-- Compiles the source
-->
<!--
=================================================================== -->
<target name="compile" depends="env,prepare-src,antlr-src,rmi-src">
<javac srcdir="${build.src}" destdir="${build.dest}" debug="${debug}"
optimize="${optimize}" deprecation="${deprecation}"
excludes="**/*.g,junit/examples/**,clients/cdriver/**,**/CVS/*,**/*.txt,**/M
akefile">
<classpath refid="compile.classpath"/>
</javac>
</target>
Thanks