Fork me on GitHub
#tools-deps
<
2022-11-29
>
devn02:11:32

Is there any way to do global exclusions of transitive deps without endlessly restating them per dep?

jjttjj16:11:52

I have a java library I'm working on and a separate Clojure project that depends on it. Is there way to recompile the java and use it from the the clojure project's repl without restarting the repl? I'm fine with putting its class output path in my clojure project's :paths even though I know that's deprecated/not a good idea, but that doesn't seem to work. Is there a way to "refresh" the classpath?

Alex Miller (Clojure team)16:11:38

easily, no. java agents do have the ability to do stuff like this but that's not something built in

👍 1
pyr20:11:56

but it would require you to bring the java dependency in the main project