diff --git a/README.md b/README.md index e2c7e00..ac2ebdb 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ # lein-adl -A Leiningen plugin to generate Clojure source code from Application Description -Language. +A Leiningen plugin to generate Clojure source code from [Application Description +Language](https://github.com/simon-brooke/adl). + +[![Clojars Project](https://img.shields.io/clojars/v/lein-adl.svg)](https://clojars.org/lein-adl) ## Usage -Put `[lein-adl "0.1.0-SNAPSHOT"]` into the `:plugins` vector of your +Put `[lein-adl "0.1.2"]` into the `:plugins` vector of your project.clj. Example usage: diff --git a/project.clj b/project.clj index e969eb6..0924cd4 100644 --- a/project.clj +++ b/project.clj @@ -1,11 +1,11 @@ -(defproject lein-adl "0.1.1-SNAPSHOT" +(defproject lein-adl "0.1.3-SNAPSHOT" :description "Integrate Application Description Language into lein workflow" :url "https://github.com/simon-brooke/lein-adl" :license {:name "Eclipse Public License" ;; for compatibility with leiningen :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[adl-support "0.1.3"] - [adl "1.4.2"]] - + [adl "1.4.3"]] + :plugins [[lein-codox "0.10.3"] [lein-release "1.0.5"]] @@ -13,6 +13,9 @@ ;; `lein release`, first merge `develop` into `master`, and then, in branch ;; `master`, run `lein release` + ;; in fact, `lein release` is pretty comprehensively broken, which is a + ;; shame because it's a good idea. + :release-tasks [["vcs" "assert-committed"] ["clean"] ["test"]