I'm talking about the reflections lib. Is there any possibility to get a list of all packages which are included in the project where I let the code compile?
I've tried it with the following code bracket but I don't want to insert a project name.
Reflections reflections = new Reflections(/* Project name here... */);
Set<Class<? extends Object>> allClasses =
reflections.getSubTypesOf(Object.class);