-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
31 lines (30 loc) · 916 Bytes
/
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
24
25
26
27
28
29
30
(defproject rm-hull/task-scheduler "0.2.1"
:description "Fork/Join task scheduling in Clojure"
:url "https://github.com/rm-hull/task-scheduler"
:license {
:name "The MIT License (MIT)"
:url "http://opensource.org/licenses/MIT"}
:dependencies [ ]
:scm {:url "[email protected]:rm-hull/task-scheduler.git"}
:vcs :git
:source-paths ["src"]
:jar-exclusions [#"(?:^|/).git"]
:codox {
:source-paths ["src"]
:output-path "doc/api"
:doc-files [
"doc/basic-usage.md"
"doc/references.md"
"LICENSE.md"
]
:source-uri "http://github.com/rm-hull/task-scheduler/blob/main/{filepath}#L{line}"}
:min-lein-version "2.8.1"
:profiles {
:dev {
:global-vars {*warn-on-reflection* true}
:plugins [
[lein-codox "0.10.8"]
[lein-cljfmt "0.9.2"]
[lein-cloverage "1.2.4"]]
:dependencies [
[org.clojure/clojure "1.11.1"]]}})