interop

2023-09-11T15:58:10.771439Z

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.

🤷 1
2023-09-11T16:01:03.357889Z

I'll see if I can make a small reproducible case and show it here.

2023-09-11T16:02:50.623609Z

I'm doing something like:

IFn require = Clojure.var("clojure.core", "require");
require.invoke(Clojure.read("com.company.stuff"));

2023-09-11T16:04:11.739589Z

I have stuff.clj in my src/main/java/com/company/ folder with the com.company.stuff in ns declaration.