I've been having problems in both regular Eclipse and in MyEcipse (versions 5.5 and 6) where when you set a breakpoint in any
Java program, you get a "Source Not Found" message.
To debug my Java class under WebLogic 9.2, I must tell Eclipse each time I debug that the source is in the "src" folder. Then I see and can step through my source code for *that* debug session only.
Each and every time I debug, the same thing happens -- I have to manually add the workspace folder called: "src" before I see my source code.
Below is the Javac task from my
ant script.
I'm trying to figure out what's keeping Eclipse from "knowing" where the source code is for expected debugging behavior.
I would greatly appreciate any suggestions.
Thanks much
Mike
<javac deprecation="on" srcdir="${project.source}" destdir="${project.classes}" debug="on">
<classpath refid="compile.classpath"/>
<compilerarg value="-Xlint:unchecked"/>
</javac>