lein-sub
lein-sub copied to clipboard
Leiningen plugin for executing tasks on sub-projects
This patch adapts code previously implemented in-house as a hook. It allows lein-sub to analyze the sub-projects and work out inter-dependencies and, from that, the build order. It works around...
Hi Kumar, Neat plugin — thank you! We are using it in a rather big project with transitive dependencies, and we though it would be nice if lein-sub would've resolved...
An idea to increase utility of `lein-sub`: Ability to nominate which keys and values in `project.clj` are propagated to / inherited by sub-projects' `project.clj`s. This would reduce management load and...
https://github.com/kumarshantanu/lein-sub/blob/4ddbb83359b2f9b6435ffd5b9c012b81e28de1ac/src/leiningen/sub.clj#L9 Use Leiningen's own logging facility? ```clojure (main/info "Reading project from" sub-proj-dir) ``` ... which I think is currently `(println)` under the hood anyways, but at least this makes consistent...