Is it possible to just put my clojure source file in the same folder as my java source files and require them? I'm getting a file not found exception.
I'll see if I can make a small reproducible case and show it here.
I'm doing something like:
IFn require = Clojure.var("clojure.core", "require");
require.invoke(Clojure.read("com.company.stuff"));I have stuff.clj in my src/main/java/com/company/ folder with the com.company.stuff in ns declaration.