Hi,
the CVS version of addExtdirsToClasspath in the javac task does not seem to work at all.
The following fixed it for me, probably not very nice though:
--- Javac.java~ Mon Sep 18 07:41:17 2000
+++ Javac.java Tue Sep 19 10:59:39 2000
@@ -749,7 +749,7 @@
File dir = project.resolveFile(dirs[i]);
FileSet fs = new FileSet();
fs.setDir(dir);
- fs.setIncludes(dirs[i]+"*");
+ fs.setIncludes("*.jar *.zip");
classpath.addFileset(fs);
}
}
Best regards, jochen
(-) Jochen Strunk (-) SIGNAL 7 Gesellschaft f�r Informationstechnologie mbH (-) Br�der-Knau�-Str. 79 - 64285 Darmstadt, (-) Tel: 06151 665402, Fax: 06151 665373 (-) [EMAIL PROTECTED], www.signal7.de
