We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 243aa94 commit 21cb08cCopy full SHA for 21cb08c
2 files changed
CHANGELOG.md
@@ -1,6 +1,8 @@
1
Changelog
2
===========
3
4
+* next
5
+ * uber - exclude Emacs backup files from uberjar inclusion (useful with local/git deps)
6
* v0.9.3 e537cd1 on Feb 1, 2023
7
* NO CHANGES - just moved Maven artifact to io.github.clojure groupId to match git dep
8
* v0.9.2 fe6b140 on Jan 17, 2023
src/main/clojure/clojure/tools/build/tasks/uber.clj
@@ -28,8 +28,10 @@
28
[#"project.clj"
29
#"META-INF/.*\.(?:SF|RSA|DSA|MF)"
30
#"module-info\.class"
31
- #"(.*/)?\.DS_Store"
32
- #"(.*/)?\.keep"
+ #"(.*/)?\.DS_Store" ;; Mac metadata
+ #".+~" ;; emacs backup files
33
+ #".#.*" ;; emacs
34
+ #"(.*/)?\.keep" ;; convention in dirs to keep that are empty
35
#".*\.pom"
36
#"(?i)META-INF/(?:INDEX\.LIST|DEPENDENCIES)(?:\.txt)?"])
37
0 commit comments