You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to run a REPL, it fails with this error message:
1 problem was encountered while building the effective model
[FATAL] Non-readable POM jar:file:datomic-free-0.9.5703/datomic-free-0.9.5703.jar!/META-INF/maven/com.datomic/datomic-free/pom.xml: datomic-free-0.9.5703/datomic-free-0.9.5703.jar (No such file or directory) @
When I run clj in the directory that contains deps.edn, the REPL starts without problem. When I turn the :local/root into an absolute path (/Users/erle/O/jursey-deps/datomic-free-0.9.5703/datomic-free-0.9.5703.jar), the REPL starts in Cursive as well. So I assume that the working directory is not right. (System/getProperty "user.dir") returns /Users/erle/O/jursey-deps, which is correct, though.
My run configuration looks like this:
The text was updated successfully, but these errors were encountered:
Yes, Cursive does some black magic to correct the CWD, since it calls into tools.deps.alpha at some points from within Cursive itself, which normally has the CWD set to within its bin directory somewhere. But it looks like that value gets passed directly to the Maven resolver, which I can't hook. I've fixed this by manually absolutising it before calling into deps.
I have this in my deps.edn file:
When I try to run a REPL, it fails with this error message:
When I run
clj
in the directory that containsdeps.edn
, the REPL starts without problem. When I turn the:local/root
into an absolute path (/Users/erle/O/jursey-deps/datomic-free-0.9.5703/datomic-free-0.9.5703.jar
), the REPL starts in Cursive as well. So I assume that the working directory is not right.(System/getProperty "user.dir")
returns/Users/erle/O/jursey-deps
, which is correct, though.My run configuration looks like this:
The text was updated successfully, but these errors were encountered: