rules_clojure
rules_clojure copied to clipboard
Clojure rules for Bazel
It would be awesome if `rules_clojure` could be used with [bzlmod](https://bazel.build/build/bzlmod).
There is no way to include resource files in the output jar file at the moment. Would you be open to adding a feature like `java_library` and `java_test` rules' `resources`...
Context: I'm using `rules_clojure` to build a Clojure jar that includes some resources that my application depends on. For example, I'm including files from the folder `resources/migrations/` where I plan...
It does not look like `clojure_test` supports attributes `resources` or `data` the way that java rules do. Any advice on how to support a use-case where my unit tests depend...
Hello and thanks for making this. I would not be able to use clojure at work without it. Is there any chance of supporting tools.deps, by which I mean using...
Hi! Thank you for making this. Does it support clojurescript as well?
`bazel test ...` should be enough see https://github.com/bazelbuild/bazel/issues/4257
Maybe it would be nice that every clojure_library would produce .repl target to run that library in repl. Something as described here https://docs.bazel.build/versions/master/skylark/tutorial-custom-verbs.html
Every target start a jvm and this is slow. Few thought: - use persistent workers - aot scripts - check need for whole jdk in runfiles