diff --git a/build.clj b/build.clj index 639e889..30a5378 100644 --- a/build.clj +++ b/build.clj @@ -58,7 +58,11 @@ opts) (defn install "Install the JAR locally." [opts] + (b/delete {:path "target"}) (let [opts (jar-opts opts)] + (b/write-pom opts) + (b/copy-dir {:src-dirs ["resources" "src"] :target-dir class-dir}) + (b/jar opts) (b/install opts)) opts)