-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
23 lines (23 loc) · 1.1 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;(defproject cli4clj "1.9.0"
(defproject cli4clj "1.9.1-SNAPSHOT"
:description "Create simple interactive CLIs for Clojure applications."
:url "https://github.com/ruedigergad/cli4clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
; Revert to Clojure 1.9.0 until the following is fixed:
; https://dev.clojure.org/jira/browse/CLJ-1472
:dependencies [[org.clojure/clojure "1.11.1"]
[clj-assorted-utils "1.19.0"]
[org.clojure/core.async "1.5.648"]
[jline/jline "2.14.6"]]
:global-vars {*warn-on-reflection* true}
:html5-docs-docs-dir "docs/doc"
:html5-docs-ns-includes #"^cli4clj.*"
:html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master"
:test2junit-output-dir "docs/test-results"
:test2junit-run-ant true
:main cli4clj.example
:aot :all
:plugins [[lein-cloverage "1.2.4"] [test2junit "1.4.2"] [lein-html5-docs "3.0.3"] [com.github.clj-kondo/lein-clj-kondo "2023.10.20"]]
:profiles {:repl {:dependencies [[jonase/eastwood "1.4.2" :exclusions [org.clojure/clojure]]]}}
)