alexander-yakushev / lein-skummet

Leiningen plugin for lean-compiling Clojure projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Problem compiling

spacepluk opened this issue · comments

Hi there,
I'm trying to compile my project with skummet and I'm getting this error with this project.clj.

Any idea?

Unfortunately :exclusions don't work if you explicitly specified the dep in :dependencies. So org.clojure/clojure isn't in fact excluded and conflicts with Skummet. You either have to move it out of top-level :dependencies to some place in the profiles, or do this in your :android profile:

:dependencies ^:replace [[org.skummet/clojure "1.7.0-r1"]]

but then you have to respecify all the necessary dependencies there, like prismatic/schema.

That works great, thanks for your help :)