(defn make-pom-properties [project]
(with-open [baos (ByteArrayOutputStream.)]
(.store (as-properties {:version (:version project)
:groupId (:group project)
:artifactId (:name project)})
baos "Leiningen")
(.getBytes (str baos))))
Comments top
No comments for make-pom-properties. Log in to add a comment.