urls = scanClassLoaderForTagLibs(parentClassLoader);
tldLocations.addAll(urls);
// load the tld files
for (URL location : tldLocations) {
TldTaglib taglib = ReadDescriptors.readTldTaglib(location);
webModule.getTaglibs().add(taglib);
if ("file".equals(location.getProtocol())) {
webModule.getWatchedResources().add(URLs.toFilePath(location));
}
}