Merge pull request #609 from ghoseb/master

Fix #31: Exclude RSA signature files from being included in uberjars.
This commit is contained in:
Michael Klishin 2012-05-30 07:30:44 -07:00
commit 13b1db6107

View file

@ -33,7 +33,7 @@
;; TODO: point to releases-only before 2.0 is out
"clojars" {:url "https://clojars.org/repo/"})
:jar-exclusions [#"^\."]
:uberjar-exclusions [#"(?i)^META-INF/[^/]*\.SF$"]})
:uberjar-exclusions [#"(?i)^META-INF/[^/]*\.(SF|RSA)$"]})
(defmacro defproject
"The project.clj file must either def a project map or call this macro."