-
Notifications
You must be signed in to change notification settings - Fork 8
/
deps.edn
85 lines (85 loc) · 5.15 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
83
84
85
{:paths ["resources" "src/main"]
:deps {org.clojure/clojure {:mvn/version "1.11.2"}
org.clojure/core.async {:mvn/version "1.6.673"}
org.clojure/core.memoize {:mvn/version "1.0.257"}
com.yetanalytics/xapi-schema
{:mvn/version "1.2.0"
:exclusions [org.clojure/clojurescript]}
com.yetanalytics/project-pan
{:mvn/version "0.4.3"
:exclusions [org.clojure/clojurescript
com.yetanalytics./xapi-schema]}
com.yetanalytics/pathetic {:mvn/version "0.5.0"}
com.yetanalytics/schemer {:mvn/version "0.1.0"}
clojure.java-time/clojure.java-time {:mvn/version "1.2.0"}
org.clojure/test.check {:mvn/version "1.1.1"}
http-kit/http-kit {:mvn/version "2.7.0"}
cheshire/cheshire {:mvn/version "5.12.0"}}
:aliases
{:dev {:extra-paths ["dev-resources" "src/dev"]
:extra-deps {incanter/incanter-core {:mvn/version "1.9.3"}
incanter/incanter-charts {:mvn/version "1.9.3"}
criterium/criterium {:mvn/version "0.4.5"}}}
:test {:extra-paths ["src/test" "src/test_onyx"]
:extra-deps {same/ish {:mvn/version "0.1.6"}
clj-test-containers/clj-test-containers {:mvn/version "0.7.4"}}}
:run-test {:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1"
:git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "src/test"]}
:cli {:extra-paths ["src/cli"]
:extra-deps {org.clojure/tools.cli {:mvn/version "1.0.219"}}}
:run-cli {:main-opts ["-m" "com.yetanalytics.datasim.cli"]}
:server {:extra-paths ["src/server"]
:extra-deps
{io.pedestal/pedestal.jetty {:mvn/version "0.6.3"
:exclusions [org.eclipse.jetty.http2/http2-server]}
io.pedestal/pedestal.service {:mvn/version "0.6.3"}
org.eclipse.jetty.http2/http2-server {:mvn/version "9.4.54.v20240208"}
org.slf4j/slf4j-simple {:mvn/version "1.7.28"}
clj-http/clj-http {:mvn/version "3.12.3"}
environ/environ {:mvn/version "1.1.0"}
;; Buddy/BouncyCastle deps
buddy/buddy-auth {:mvn/version "3.0.323"
:exclusions [cheshire/cheshire
buddy/buddy-sign]}
buddy/buddy-sign {:mvn/version "3.5.346"
:exclusions [org.bouncycastle/bcprov-jdk18on]}
org.bouncycastle/bcprov-jdk18on {:mvn/version "1.78"}}}
:run-server {:main-opts ["-m" "com.yetanalytics.datasim.server"]}
:onyx {:extra-paths ["onyx-resources" "src/onyx"]
:extra-deps {com.amazonaws/aws-java-sdk-s3 {:mvn/version "1.11.899"}
com.amazonaws/aws-java-sdk-core {:mvn/version "1.11.899"}
org.onyxplatform/onyx {:mvn/version "0.14.6"
:exclusions
;; TODO: More exclusions probably
[org.clojure/clojure
org.clojure/core.async
org.slf4j/slf4j-nop
com.amazonaws/aws-java-sdk-s3]}
aleph/aleph {:mvn/version "0.4.7-alpha7"}
com.fzakaria/slf4j-timbre {:mvn/version "0.3.20"}
org.onyxplatform/lib-onyx {:mvn/version "0.14.1.0"}
org.onyxplatform/onyx-http {:mvn/version "0.14.5.0"
:exclusions [aleph/aleph
io.netty/netty-all]}
;; for local repl
com.bhauman/rebel-readline {:mvn/version "0.1.4"}
;; for remote repl
nrepl/nrepl {:mvn/version "0.8.3"}
cider/cider-nrepl {:mvn/version "0.25.6"}
org.onyxplatform/onyx-peer-http-query {:mvn/version "0.14.5.1-SNAPSHOT"}
org.onyxplatform/onyx-amazon-s3 {:mvn/version "0.14.5.0"
:exclusions [org.clojure/clojure
org.onyxplatform/onyx
com.amazonaws/aws-java-sdk-s3]}}}
:onyx-dev {:extra-paths ["src/onyx_dev"]}
:onyx-test {:extra-paths ["src/test_onyx"]}
:run-onyx-test {:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1"
:git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "src/test_onyx"]}
:depstar {:replace-deps ; tool usage is new in 2.x
{seancorfield/depstar {:mvn/version "2.0.165"}}
:ns-default hf.depstar
:exec-args {:no-pom true}}}}