jarClassloader = new URLClassLoader(urls, this.getClass().getClassLoader());
long t1 = System.currentTimeMillis();
List<Class< ? >> classesList = new ArrayList<Class< ? >>();
for( URL url : urlList ) {
ResourceFinder finder = new ResourceFinder("META-INF/", url);
Map<String, Properties> servicesList = finder.mapAllProperties("services");
Set<Entry<String, Properties>> servicesEntrySets = servicesList.entrySet();
for( Entry<String, Properties> serviceEntry : servicesEntrySets ) {
Properties properties = serviceEntry.getValue();
Set<Entry<Object, Object>> entrySet = properties.entrySet();
for( Entry<Object, Object> entry : entrySet ) {