We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc8017e commit 4d661fbCopy full SHA for 4d661fb
1 file changed
src/main/clojure/clojure/tools/build/tasks/uber.clj
@@ -156,6 +156,11 @@
156
Returns possibly updated state for further exploding."
157
[^InputStream is ^String path dir? ^FileTime last-modified-time
158
^File out-file lib {:keys [out-dir buffer exclude handlers] :as context} state]
159
+ (when (= path "META-INF\\LICENSE.txt")
160
+ (println "in explode1"
161
+ (exclude-from-uber? exclude path)
162
+ dir?
163
+ (.exists out-file)))
164
(cond
165
;; excluded or directory - do nothing
166
(or (exclude-from-uber? exclude path) dir?)
0 commit comments