You can import the class:
import org.reflections.Reflections;
or all classes in the package:
import org.reflections.*;
But you cannot import the package:
import org.reflections; // looks for a class named "reflections" in the package "org"
Note that with an IDE like Eclipse, you almost never import anything, because the IDE does this for you. Enter "Refl", then Ctrl-space and Eclipse will suggest using Reflections and add import for you. Or use Reflections without importing it, then press Ctrl-Shift-O, and Eclipse organizes the import, adding all necessary imports and deleting unnecessary ones.
EDIT:
The file reflections-0.9.9-uberjar.jar is not a Java library (cluster containing classes). This is a jar containing other jars (and thus it should be a zip file to avoid confusion). You must unzip the jar and put all the libraries it contains in the build path.
source share