2022-02-18 13:38:19 +00:00
|
|
|
(defproject org.domaindrivenarchitecture/c4k-common-cljs "1.1.0"
|
2021-06-18 14:52:59 +00:00
|
|
|
:description "Contains predicates and tools for c4k"
|
|
|
|
:url "https://domaindrivenarchitecture.org"
|
|
|
|
:license {:name "Apache License, Version 2.0"
|
|
|
|
:url "https://www.apache.org/licenses/LICENSE-2.0.html"}
|
|
|
|
:dependencies [[org.clojure/clojure "1.10.3" :scope "provided"]
|
|
|
|
[aero "1.1.6"]
|
|
|
|
[orchestra "2021.01.01-1"]
|
|
|
|
[expound "0.8.9"]]
|
|
|
|
:source-paths ["src/main/cljc"
|
2021-06-18 15:29:27 +00:00
|
|
|
"src/main/cljs"]
|
2021-06-18 14:52:59 +00:00
|
|
|
:resource-paths ["src/main/resources"]
|
2021-07-09 17:12:09 +00:00
|
|
|
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
|
|
|
|
:sign-releases false}]]
|
2021-06-18 14:52:59 +00:00
|
|
|
:release-tasks [["vcs" "assert-committed"]
|
|
|
|
["change" "version" "leiningen.release/bump-version" "release"]
|
|
|
|
["vcs" "commit"]
|
|
|
|
["vcs" "tag"]
|
|
|
|
["deploy"]
|
|
|
|
["change" "version" "leiningen.release/bump-version"]])
|