-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
43 lines (36 loc) · 1.74 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
(defproject toyokumo/tarayo
#=(clojure.string/trim #=(slurp "resources/VERSION"))
:description "SMTP client library for Clojure. That’s it."
:url "https://github.com/toyokumo/tarayo"
:license {:name "Apache, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:repositories [["clojars" {:url "https://clojars.org/repo"
:sign-releases false}]]
:dependencies [[camel-snake-kebab "0.4.3"]
[org.eclipse.angus/angus-mail "2.0.3"]
[commons-codec "1.16.1"]
[jakarta.mail/jakarta.mail-api "2.1.3"]
[nano-id "1.1.0"]
[org.apache.tika/tika-core "2.9.1"]]
:profiles
{:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
:dev {:dependencies [[org.clojure/clojure "1.11.1"]
[com.github.kirviq/dumbster "1.7.1"]
[testdoc "1.4.1"]
;; for stubbing
[com.gearswithingears/shrubbery "0.4.1"]]
:source-paths ["dev/src" "src"]
:resource-paths ["dev/resources"]
:global-vars {*warn-on-reflection* true}}
:it {:dependencies [[org.clojure/data.json "2.5.0"]
[http-kit "2.7.0"]]
:test-paths ["integration/test"]}
:antq {:dependencies [[com.github.liquidz/antq "RELEASE"]]}}
:aliases
{"test-all" ["with-profile" "1.8,dev:1.9,dev:1.10,dev:dev" "test"]
"test-integration" ["with-profile" "1.9,dev,it:1.10,dev,it" "test"]
"antq" ["with-profile" "+antq" "run" "-m" "antq.core"]}
:plugins [[lein-cloverage "1.2.4"]]
:cloverage {:ns-exclude-regex [#"benchmark"]})