On Mon, 7 Apr 2003, Ignacio J. Ortega <[EMAIL PROTECTED]> wrote: >> Which also implies that we'll need to go through Ant's codebase and >> replace all Class.forName() calls (we better do that anyway 8-). > > I didnt understand this, why?
Class.forName will use the system classloader and not the nice little URLClassLoader your Launcher provides. Many places inside Ant use Class.forName, thereby assuming that everything from ANT_HOME/lib will be available on the system classloader. Stefan