ClassSearcher no longer scan's 3rd party jar's for ExtenionPoints in

development mode when using the flatrepo/gradle cache setup.
This commit is contained in:
Ryan Kurtz 2020-05-22 09:59:48 -04:00
parent 777bcbef17
commit add6576054

View file

@ -96,7 +96,8 @@ class ClassJar extends ClassLocation {
// //
// Dev Mode - don't scan 3rd-party jar files // Dev Mode - don't scan 3rd-party jar files
// //
if (pathName.contains("ExternalLibraries")) { if (pathName.contains("ExternalLibraries") || pathName.contains("caches") ||
pathName.contains("flatrepo")) {
return true; return true;
} }