diff --git a/build.clj b/build.clj index 4f0535d..cc004ff 100644 --- a/build.clj +++ b/build.clj @@ -6,6 +6,8 @@ (def version "0.0.8") (def jar-file (format "target/%s-%s.jar" (name lib) version)) (def class-dir "target/classes") +(def url "https://github.com/somecho/depo.git") +(def connection (str "scm:git:" url)) (defn clean [_] (b/delete {:path "target"})) @@ -15,6 +17,9 @@ :lib lib :version version :basis (b/create-basis {:project "deps.edn"}) + :scm {:connection connection + :developerConnection connection + :url url} :src-dirs ["src"]}) (b/copy-dir {:src-dirs ["src" "resources"] :target-dir class-dir})