isaki
isaki
That means you have an old version of Guava in your class path. Check your Guava version.
20.0 is pulled in by Reflections most likely, but 18.0 is probably winning. You could try setting up managed dependencies to force only 20. I currently force `24.1-jre` and it...
I had a similar issue; I ended up with the following (which walks sub-packages as well): ```java import org.reflections.Reflections; import org.reflections.scanners.MethodAnnotationsScanner; import org.reflections.scanners.ResourcesScanner; import org.reflections.util.ClasspathHelper; import org.reflections.util.ConfigurationBuilder; import org.reflections.util.FilterBuilder; ```...
Alright, I have it working for you: ```java final Class myClazz = this.getClass(); final String myPkg = myClazz.getPackage().getName(); final ConfigurationBuilder config = new ConfigurationBuilder() .setScanners(new ResourcesScanner(), new SubTypesScanner(false)) .setUrls(ClasspathHelper.forPackage(myPkg)) .filterInputsBy(new...