-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
deps.edn
82 lines (80 loc) · 3.92 KB
/
deps.edn
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
{:paths ["src" "resources" "target/classes"]
:deps {it.unimi.dsi/fastutil-core {:mvn/version "8.5.14"}
com.github.ben-manes.caffeine/caffeine {:mvn/version "2.9.3"}}
:aliases
{;; Run with clj -T:build function-in-build
:dev
{:extra-deps {;;org.clojure/clojure {:mvn/version "1.12.0-CN-SNAPSHOT"}
org.clojure/clojure {:mvn/version "1.11.4"}
criterium/criterium {:mvn/version "0.4.6"}
techascent/tech.ml.dataset {:mvn/version "7.032"}
ch.qos.logback/logback-classic {:mvn/version "1.1.3"}
kixi/stats {:mvn/version "0.5.5"}
org.clojure/data.int-map {:mvn/version "1.3.0"}
techascent/tech.viz {:mvn/version "6.00-beta-16-4"}
com.clojure-goes-fast/clj-java-decompiler {:mvn/version "0.3.6"}
com.clojure-goes-fast/clj-memory-meter {:mvn/version "0.3.0"}}
:extra-paths ["dev/src" "test"]}
:nospec {:jvm-opts ["-Dclojure.spec.skip-macros=true" "-Xverify:none"]}
:jdk-19 {:jvm-opts ["-Djdk.attach.allowAttachSelf=true" "--illegal-access=permit"]}
:build
{:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2024.08.29"}}
:main-opts ["-m" "clj-kondo.main"]}
:test
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}}
:extra-paths ["test"]
:main-opts ["-m" "kaocha.runner"]}
:dev-test
{:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}
ch.qos.logback/logback-classic {:mvn/version "1.1.3"}}
:extra-paths ["test"]
:main-opts ["-m" "cognitect.test-runner"]}
:codox
{:extra-deps {codox-theme-rdash/codox-theme-rdash {:mvn/version "0.1.2"}
nrepl/nrepl {:mvn/version "1.3.0"}
cider/cider-nrepl {:mvn/version "0.50.2"}
com.cnuernber/codox {:mvn/version "1.001"}}
:exec-fn codox.main/-main
:exec-args {:group-id "com.cnuernber"
:artifact-id "ham-fisted"
:version "2.018"
:name "Ham-Fisted"
:description "High Performance Clojure Primitives"
:metadata {:doc/format :markdown}
:html {:transforms [[:head] [:append [:script {:async true
:src "https://www.googletagmanager.com/gtag/js?id=G-XJYNJF48RM"}]]
[:head] [:append [:script "window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XJYNJF48RM');"]]]}
:themes [:rdash]
:source-paths ["src"]
:output-path "docs"
:doc-paths ["topics"]
:source-uri "https://github.com/cnuernber/ham-fisted/blob/master/{filepath}#L{line}"
:namespaces [ham-fisted.api
ham-fisted.lazy-noncaching
ham-fisted.protocols
ham-fisted.set
ham-fisted.function
ham-fisted.mut-map
ham-fisted.reduce
ham-fisted.hlet
ham-fisted.primitive-invoke]}}
:deploy
{:replace-deps {slipset/deps-deploy {:mvn/version "0.2.2"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :remote
:sign-releases? true
:artifact "target/ham-fisted.jar"}}
:install
{:replace-deps {slipset/deps-deploy {:mvn/version "0.2.2"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :local
:artifact "target/ham-fisted.jar"}}}}