alexander-yakushev / lein-skummet

Leiningen plugin for lean-compiling Clojure projects
44 stars 4 forks source link

Problem compiling #8

Closed spacepluk closed 8 years ago

spacepluk commented 8 years ago

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

Any idea?

alexander-yakushev commented 8 years ago

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.

spacepluk commented 8 years ago

That works great, thanks for your help :)