By default, the following files are excluded from the output JAR:
project.clj.keep**/*.pommodule-info.classMETA-INF/**/*.MF, also *.SF, *.RSA, and *.DSAMETA-INF/INDEX.LIST, META-INF/DEPENDENCIES, optionally with .txt suffixIn addition, depstar accepts an :exclude option: a vector of strings to use as regular expressions to match other files to be excluded. re-matches is used so these should be a complete match for the full relative path and filename. For example, if you wanted to exclude clojure.core.specs.alpha code from your JAR, you would specify :exclude '["clojure/core/specs/alpha.*"]' -- note .* at the end so it matches the entire filename.
Can you improve this documentation?Edit on GitHub
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |