Hi,
The compilation of my
Java code depends on the existence of few jars in my classpath.Now,what ideally should happen is if these jars are not present in the lib folder of my project, I want my src not to compile and ideally the build should fail.But, what is happening is that
ANT has some jars in ANT_HOME/lib and it is using those jars to compile my java classes in src folder.So, is there some way that I can specify my build to look only in my project class path for the jars and not under ANT_HOME\lib??
Thanks in advance,
Sumit