Preparation for release
This commit is contained in:
parent
6daeadac9c
commit
1860e49d23
28
project.clj
28
project.clj
|
@ -1,9 +1,29 @@
|
||||||
(defproject lein-adl "0.1.0-SNAPSHOT"
|
(defproject lein-adl "0.1.0-SNAPSHOT"
|
||||||
:description "Integrate Application Description Language into lein workflow"
|
:description "Integrate Application Description Language into lein workflow"
|
||||||
:url "http://example.com/FIXME"
|
:url "https://github.com/simon-brooke/lein-adl"
|
||||||
:license {:name "Eclipse Public License"
|
:license {:name "Eclipse Public License" ;; for compatibility with leiningen
|
||||||
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
||||||
:dependencies [[adl-support "0.1.1-SNAPSHOT"]
|
:dependencies [[adl-support "0.1.3"]
|
||||||
[adl "1.4.2-SNAPSHOT"]]
|
[adl "1.4.2"]]
|
||||||
|
|
||||||
|
:plugins [[lein-codox "0.10.3"]
|
||||||
|
[lein-release "1.0.5"]]
|
||||||
|
|
||||||
|
;; `lein release` doesn't work with `git flow release`. To use
|
||||||
|
;; `lein release`, first merge `develop` into `master`, and then, in branch
|
||||||
|
;; `master`, run `lein release`
|
||||||
|
|
||||||
|
: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
|
||||||
|
["uberjar"]
|
||||||
|
["install"]
|
||||||
|
["deploy" "clojars"]
|
||||||
|
["change" "version" "leiningen.release/bump-version"]
|
||||||
|
["vcs" "commit"]]
|
||||||
|
|
||||||
:eval-in-leiningen true)
|
:eval-in-leiningen true)
|
||||||
|
|
Loading…
Reference in a new issue