-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
project.clj
110 lines (95 loc) · 3.69 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
(defproject com.taoensso/timbre "6.6.1"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Pure Clojure/Script logging library"
:url "https://www.taoensso.com/timbre"
:license
{:name "Eclipse Public License - v 1.0"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:test-paths ["test" #_"src"]
:dependencies
[[com.taoensso/encore "3.128.0"]
[org.clj-commons/pretty "3.2.0"]]
:profiles
{;; :default [:base :system :user :provided :dev]
:provided {:dependencies [[org.clojure/clojurescript "1.11.132"]
[org.clojure/clojure "1.11.4"]]}
:c1.12 {:dependencies [[org.clojure/clojure "1.12.0"]]}
:c1.11 {:dependencies [[org.clojure/clojure "1.11.4"]]}
:c1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
:c1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:deploy
{:source-paths [ "src" "deploy/src"]
:test-paths ["test" #_"src" "deploy/test" #_"deploy/src"]}
:graal-tests
{:source-paths ["test"]
:main taoensso.graal-tests
:aot [taoensso.graal-tests]
:uberjar-name "graal-tests.jar"
:dependencies
[[org.clojure/clojure "1.11.4"]
[com.github.clj-easy/graal-build-time "1.0.5"]]}
:community
{:dependencies
[[irclj "0.5.0-alpha4"]
[org.graylog2/gelfclient "1.5.1"
:exclusions [com.fasterxml.jackson.core/jackson-core]]
[org.julienxx/clj-slack "0.8.3"]
[org.clojure/java.jdbc "0.7.12"]
[com.mchange/c3p0 "0.10.1"]
[cheshire "5.13.0"]
[ymilky/franzy "0.0.1"]
[com.newrelic.agent.java/newrelic-agent "8.15.0"]
[net.java.dev.jna/jna "5.15.0"]
[raven-clj "1.7.0"]
[congomongo "2.6.0"]
[server-socket "1.0.0"]
[org.zeromq/cljzmq "0.1.4"]
[cljs-node-io "1.1.2"] ; `node-spit` appender
[com.github.steffan-westcott/clj-otel-api "0.2.7"] ; `otlp` appender
]}
:dev [:dev+ :community #_:deploy]
:dev+
{:jvm-opts ["-server" #_"-Dtaoensso.elide-deprecated=true"]
:global-vars
{*warn-on-reflection* true
*assert* true
*unchecked-math* false #_:warn-on-boxed}
:dependencies
[[org.clojure/test.check "1.1.1"]
[org.clojure/tools.logging "1.3.0"]
[org.slf4j/slf4j-api "2.0.16"]
[com.taoensso/timbre-slf4j "6.6.0"]
[com.taoensso/nippy "3.5.0-RC1"]
[com.taoensso/carmine "3.4.1" :exclusions [com.taoensso/timbre]]
[com.draines/postal "2.0.5"]]
:plugins
[[lein-pprint "1.3.2"]
[lein-ancient "0.7.0"]
[lein-cljsbuild "1.1.8"]
[com.taoensso.forks/lein-codox "0.10.11"]]
:codox
{:language #{:clojure :clojurescript}
:base-language :clojure}}}
:cljsbuild
{:test-commands {"node" ["node" "target/test.js"]}
:builds
[{:id :main
:source-paths ["src"]
:compiler
{:output-to "target/main.js"
:optimizations :advanced}}
{:id :test
:source-paths ["src" "test"]
:compiler
{:output-to "target/test.js"
:target :nodejs
:optimizations :simple}}]}
:aliases
{"start-dev" ["with-profile" "+dev" "repl" ":headless"]
"build-once" ["do" ["clean"] ["cljsbuild" "once"]]
;; "deploy-lib" ["do" ["build-once"] ["deploy" "clojars"] ["install"]]
"deploy-lib" ["with-profile" "+deploy" "do"
["build-once"] ["deploy" "clojars"] ["install"]]
"test-clj" ["with-profile" "+c1.12:+c1.11:+c1.10:+c1.9" "test"]
"test-cljs" ["with-profile" "+c1.12" "cljsbuild" "test"]
"test-all" ["do" ["clean"] ["test-clj"] ["test-cljs"]]})