-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathproject.clj
More file actions
31 lines (22 loc) · 1.29 KB
/
project.clj
File metadata and controls
31 lines (22 loc) · 1.29 KB
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
31
(defproject io.factorhouse/cronut "1.2.3"
:description "A Clojure companion to Quartz with Jakarta compatibility"
:url "https://github.com/factorhouse/cronut"
:license {:name "Apache 2.0 License"
:url "https://github.com/factorhosue/slipway/blob/main/LICENSE"}
:plugins [[dev.weavejester/lein-cljfmt "0.15.3"]]
:dependencies [[org.clojure/clojure "1.12.4"]
[org.clojure/tools.logging "1.3.1"]
[org.quartz-scheduler/quartz "2.5.2" :exclusions [org.slf4j/slf4j-api]]]
:profiles {:dev {:resource-paths ["dev-resources"]
:dependencies [[ch.qos.logback/logback-classic "1.5.32"]
[org.slf4j/slf4j-api "2.0.17"]
[org.clojure/core.async "1.9.865"]
[clj-kondo "2026.01.19" :exclusions [org.clojure/tools.reader]]]}
:smoke {:pedantic? :abort}}
:aliases {"check" ["with-profile" "+smoke" "check"]
"kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "src:src:test:test" "--parallel"]
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]
"fmtfix" ["with-profile" "+smoke" "cljfmt" "fix"]}
:source-paths ["src"]
:test-paths ["test"]
:pedantic? :warn)