// we only use the class loader and do not need the class path
clctxt.setClassLoader(loader);
clctxt.setClassPath(null);
Compiler clc = clctxt.createCompiler();
// If compile is set, generate both .java and .class, if
// .jsp file is newer than .class file;
// Otherwise only generate .java, if .jsp file is newer than
// the .java file
if (clc.isOutDated(compile)) {
clc.compile(compile, true);
if (showSuccess) {
getLog().info("Built File: " + file);
}
} else if (showSuccess) {