(defn pom
"Write a pom.xml file to disk for Maven interop."
([project pom-location silently?]
(let [pom-file (file (:root project) pom-location)]
(copy (make-pom project true) pom-file)
(when-not silently? (println "Wrote" (.getName pom-file)))
(.getAbsolutePath pom-file)))
([project pom-location] (pom project pom-location false))
([project] (pom project "pom.xml")))
Comments top
No comments for pom. Log in to add a comment.