On Mon, 13 Aug 2001, indu ss <ind1_us@yahoo.com> wrote:
> The source files do exist,but no class files are
> generated .
Run ant -verbose.
For each file Ant matches (i.e. your source files if the javac task
can find them) you will get a line in the output in one of the forms:
(1) filename skipped - don't know how to handle it
shouldn't happen - could only appear if Ant matched non .java files.
(2) filename added as classfilename doesn't exist
(3) filename added as classfilename is outdated.
(4) filename omitted as classfilename is up to date.
If you don't get any of these messages, Ant doesn't find your .java
files at all. In this case, we'll need the <javac> snippet along with
the values of _all_ properties you use there and the filenames of the
files you want to compile to get you further.
Stefan
|