Given the following deps.edn
{:paths ["src/"]
;; store the deps within project so that gitlab can cache it.
:mvn/local-repo "../../.m2/"
}
Cursive errs:
Errors during project resolution
The following errors were found during project resolve:
/foo/bar/deps.edn:
/../../.m2/org/clojure/clojure/1.10.1/clojure-1.10.1.pom.part.lock (No such file or directory)
So a / is added in front of the relative path.
Given the following deps.edn
Cursive errs:
Errors during project resolution
The following errors were found during project resolve:
/foo/bar/deps.edn:
/../../.m2/org/clojure/clojure/1.10.1/clojure-1.10.1.pom.part.lock (No such file or directory)
So a / is added in front of the relative path.