List<String> rjrClasspaths = ProjectClassLoader.getClasspaths();
for (String path : rjrClasspaths) {
if (path.endsWith(".jar")) {
Resource resource = new FileResource(new File(path).toURI().toURL());
if(!items.contains(resource.getFile().getAbsolutePath())){
if (Log.isDebugEnabled()) Log.debug("scanning RJR jar for annotation:" + path);
handleJar(context, parser,resource, frags);
}else{
if (Log.isDebugEnabled()) Log.debug("skip scanning RJR jar which is already in WEB-INF/lib:" + path);
}