-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Newer ClojureScript versions clashes with rrb-vector which prevents building #90
Comments
Thanks for posting this. I'm going to have to take Brandon's position - this is sounds like a problem to be fixed upstream rather than here. But for those who want a quick fix, you should be able to use |
For me, this eliminated the issues: {:user {:dependencies [[org.clojure/core.rrb-vector "0.0.13"]]
:plugins [[org.clojure/core.rrb-vector "0.0.13"]
[venantius/ultra "0.5.2" :exclusions [org.clojure/clojure
org.clojure/core.rrb-vector]]]}} I was seeing the error mentioned above when running on JDK 11 |
@venantius The rrb-vector dependency also affects JDK11, not just ClojureScript. AFAICT the fipp ticket is a bit of a red herring: someone, somewhere, needs to pull in a newer version of rrb-vector, cut a new release, and ultra needs to update the dep. You could work around it in ultra, but I agree that's not super appropriate :) |
I think @lvh is right, and
Puget is on version I think bumping ultra's dep to |
Hi,
I ran into problem where my builds failed when using newer version of ClojureScript because it clashes with rrb-vector version 0.0.11. More about this problem here: brandonbloom/fipp#42
Dependecy goes like this Ultra -> puget -> fipp -> rrb-vector
Here is the open issue to fix it in cljs-build emezeske/lein-cljsbuild#469
As such I cannot use Ultra. You could override the rrb-vector dependency with this version
[quantum/org.clojure.core.rrb-vector "0.0.12"]
to make it usable again.The text was updated successfully, but these errors were encountered: