(defn write-jar [project out-filename filespecs]
(with-open [jar-os (JarOutputStream. (BufferedOutputStream.
(FileOutputStream. out-filename))
(make-manifest project))]
(doseq [filespec filespecs]
(copy-to-jar project jar-os filespec))))
Comments top
No comments for write-jar. Log in to add a comment.