From e394c7b79af8145b8300850be1d930c16bdf2d64 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Thu, 19 Jul 2018 22:01:28 +0100 Subject: [PATCH] Automate release process --- project.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/project.clj b/project.clj index 9312fdc..a90c092 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,6 @@ (defproject adl-support "0.1.1" :description "A small library of functions called by generated ADL code." - :url "http://example.com/FIXME" + :url "https://github.com/simon-brooke/adl-support" :license {:name "MIT License" :url "https://opensource.org/licenses/MIT"} @@ -13,13 +13,13 @@ [lein-release "1.0.5"]] :release-tasks [["vcs" "assert-committed"] + ["clean"] + ["test"] + ["codox"] ["change" "version" "leiningen.release/bump-version" "release"] ["vcs" "commit"] ;; ["vcs" "tag"] -- not working, problems with secret key - ["clean"] - ["test"] ["uberjar"] - ["codox"] ["install"] ["change" "version" "leiningen.release/bump-version"] ["vcs" "commit"]])