clojure-dev

arohner 2022-04-28T09:15:57.941779Z

rules_clojure, for bazel also: https://github.com/griffinbank/rules_clojure/blob/main/java/rules_clojure/ClojureWorker.java, https://github.com/griffinbank/rules_clojure/blob/main/src/rules_clojure/jar.clj The approach I took is to require deps and then compile, e.g. (non-transitive-compile ’foo.bar) => (do (topo-require-all-deps-of ’foo.bar) (compile ’foo.bar))

cfleming 2022-04-28T23:10:24.282419Z

Thanks Allen, that’s interesting - I’ll have to read through all that and then re-work my approach I think.