Closed tobias closed 11 years ago
Mark Derricutt » clojure-maven-plugin #35 FAILURE Looks like there's a problem with this pull request (what's this?)
Hrm, the tests passed before I merged in the 1.3.16 commits. I'll take a look.
Well, the test-resources
test fails without my patch applied, so I'm off the hook :)
Well that's odd that it fails for you as it passed when I released the plugin last night - bizarre.
Pulled - and will check all the tests still pass and push out a .17 release :)
@talios great, thanks. The new release works great for me. And I saw #70, so we're all good :)
In the process of upgrading a mixed Java/Clojure project from 1.3.8 to 1.3.15, we ran into a problem caused by the
requiresDependencyResolution
forClojureRunMojo
being changed fromCOMPILE
toRUNTIME
. We have quite a few deps that are in theprovided
scope, and this change means we have to move them to theruntime
scope for the clojure compile goal to see them. However, moving them toruntime
prevents the java compile goal from seeing them.I'm no maven expert, so I don't fully understand the implications of
requiresDependencyResolution
, but changing it toCOMPILE_PLUS_RUNTIME
allows us to build, and allows all of the plugin's tests to pass.