-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
18 lines (18 loc) · 945 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;(defproject clj-assorted-utils "1.19.0"
(defproject clj-assorted-utils "1.19.1-SNAPSHOT"
:description "Unsorted bunch of helper and utility functions."
:dependencies [[org.clojure/clojure "1.11.1"]]
:global-vars {*warn-on-reflection* true}
:html5-docs-docs-dir "docs/doc"
:html5-docs-ns-includes #"^clj-assorted-utils.*"
:html5-docs-repository-url "https://github.com/ruedigergad/clj-assorted-utils/blob/master"
:test2junit-output-dir "docs/test-results"
:test2junit-run-ant true
:aot [clj-assorted-utils.JavaUtils]
:plugins [[lein-cloverage "1.2.4"] [test2junit "1.4.2"] [lein-html5-docs "3.0.3"]]
:profiles {:repl {:dependencies [[jonase/eastwood "1.4.2" :exclusions [org.clojure/clojure]]]}}
:license {:name "Eclipse Public License (EPL) - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "This is the same license as used for Clojure."}
)