Hi
I downloaded a simple Java application using Spring, which
works in Eclipse if I manually add the needed jar libraries. However, I would rather use the existing build.xml, which includes the libraries via
<fileset dir=...>
and
<include...>
nodes.
If I rightclick the build.xml and click on Run As->Ant Build, the project compiles, too. Nevertheless, when I view the Java files in Eclipse, there are still errors marked, e.g. "The import org.springframework cannot be resolved", so maybe the automatic compilation doesn't work.
If I run ant in the terminal in the project directory the project runs, too.
Thanks in advance
Johannes Riecken