diff --git a/project.clj b/project.clj index 2841f43..71147d6 100644 --- a/project.clj +++ b/project.clj @@ -1,19 +1,32 @@ (defproject net.gered/views.honeysql "0.3-SNAPSHOT" - :description "HoneySQL view implementation for views" - :url "https://github.com/gered/views.honeysql" + :description "HoneySQL view implementation for views" + :url "https://github.com/gered/views.honeysql" + :license {:name "MIT License" + :url "http://opensource.org/licenses/MIT"} - :license {:name "MIT License" - :url "http://opensource.org/licenses/MIT"} + :dependencies [[net.gered/views "1.6-SNAPSHOT"] + [org.clojure/tools.logging "1.2.4"]] - :dependencies [[net.gered/views "1.6-SNAPSHOT"] - [org.clojure/tools.logging "1.2.4"]] + :profiles {:provided + {:dependencies [[org.clojure/clojure "1.10.3"] + [org.clojure/java.jdbc "0.7.12"] + [com.github.seancorfield/honeysql "2.2.840"]]} - :profiles {:provided - {:dependencies [[org.clojure/clojure "1.10.3"] - [org.clojure/java.jdbc "0.7.12"] - [com.github.seancorfield/honeysql "2.2.840"]]} + :test + {:dependencies [[pjstadig/humane-test-output "0.11.0"]] + :injections [(require 'pjstadig.humane-test-output) + (pjstadig.humane-test-output/activate!)]}} - :test - {:dependencies [[pjstadig/humane-test-output "0.11.0"]] - :injections [(require 'pjstadig.humane-test-output) - (pjstadig.humane-test-output/activate!)]}}) + :deploy-repositories [["releases" :clojars] + ["snapshots" :clojars]] + + :release-tasks [["vcs" "assert-committed"] + ["change" "version" "leiningen.release/bump-version" "release"] + ["vcs" "commit"] + ["vcs" "tag" "v" "--no-sign"] + ["deploy"] + ["change" "version" "leiningen.release/bump-version"] + ["vcs" "commit" "bump to next snapshot version for future development"] + ["vcs" "push"]] + + )