forked from yetanalytics/lrsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
119 lines (119 loc) · 5.78 KB
/
deps.edn
File metadata and controls
119 lines (119 loc) · 5.78 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
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
111
112
113
114
115
116
117
118
119
{:paths ["src/main" "resources"]
:deps
{;; Clojure core deps
org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/tools.logging {:mvn/version "1.1.0"}
org.clojure/core.memoize {:mvn/version "1.0.250"}
clojure-interop/java.security {:mvn/version "1.0.5"}
;; Util deps
;; - java-time: Updating to 0.3.3 causes dep clash with DATASIM
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.2"}
cheshire/cheshire {:mvn/version "5.11.0"}
clojure.java-time/clojure.java-time {:mvn/version "0.3.2"}
danlentz/clj-uuid {:mvn/version "0.1.9"}
aero/aero {:mvn/version "1.1.6"}
selmer/selmer {:mvn/version "1.12.44"}
ch.qos.logback/logback-classic {:mvn/version "1.2.10"}
;; DB/JDBC deps
;; - HikariCP: Need to exclude slf4j to make logback work properly
;; - HugSql: Use custom version instead of the released version (0.5.1)
com.stuartsierra/component {:mvn/version "1.0.0"}
com.github.seancorfield/next.jdbc {:mvn/version "1.2.709"}
com.yetanalytics/hugsql {:mvn/version "0.6.1-YetAnalytics"}
com.layerware/hugsql-adapter-next-jdbc {:mvn/version "0.5.1"}
com.zaxxer/HikariCP {:mvn/version "5.0.0"
:exclusions [org.slf4j/slf4j-api]}
;; Pedestal and Jetty webserver deps
io.pedestal/pedestal.jetty {:mvn/version "0.5.10"}
org.eclipse.jetty/jetty-alpn-java-server {:mvn/version "9.4.44.v20210927"}
;; Security deps
buddy/buddy-core {:mvn/version "1.10.1"}
buddy/buddy-sign {:mvn/version "3.4.1"}
buddy/buddy-hashers {:mvn/version "1.8.1"}
less-awful-ssl/less-awful-ssl {:mvn/version "1.0.6"}
;; Yet Analytics deps
com.yetanalytics/lrs
{:mvn/version "1.2.12"
:exclusions [org.clojure/clojure
org.clojure/clojurescript
com.yetanalytics/xapi-schema]}
com.yetanalytics/xapi-schema
{:mvn/version "1.2.0"
:exclusions [org.clojure/clojure
org.clojure/clojurescript]}
com.yetanalytics/colossal-squuid
{:mvn/version "0.1.4"
:exclusions [org.clojure/clojure
org.clojure/clojurescript]}
com.yetanalytics/pedestal-oidc
{:mvn/version "0.0.8"
:exclusions [org.clojure/clojure]}}
:aliases
{:db-h2
{:extra-paths ["src/db/h2"]
:extra-deps {com.h2database/h2 {:mvn/version "2.1.212"}}}
:db-sqlite
{:extra-paths ["src/db/sqlite"]
:extra-deps {org.xerial/sqlite-jdbc {:mvn/version "3.36.0"}}}
:db-postgres
{:extra-paths ["src/db/postgres"]
:extra-deps {org.postgresql/postgresql {:mvn/version "42.3.3"}}}
:bench
{:extra-paths ["src/bench" "dev-resources"]
:extra-deps {org.clojure/tools.cli {:mvn/version "1.0.194"}
org.clojure/math.numeric-tower {:mvn/version "0.0.4"}
babashka/babashka.curl {:mvn/version "0.0.3"}
com.yetanalytics/datasim
{:git/url "https://github.com/yetanalytics/datasim.git"
:git/sha "684fdefed81972093b56556d7f60a637457a6a06"
:git/tag "v0.1.2"
:exclusions [org.clojure/clojure
com.yetanalytics/xapi-schema]}}}
:test
{:extra-paths ["src/db/h2"
"src/db/sqlite"
"src/db/postgres"
"src/test"
"dev-resources"]
:extra-deps {;; DB deps
com.h2database/h2 {:mvn/version "2.1.212"}
org.xerial/sqlite-jdbc {:mvn/version "3.36.0"}
org.postgresql/postgresql {:mvn/version "42.3.3"}
org.testcontainers/postgresql {:mvn/version "1.16.3"}
;; Other test deps
org.clojure/test.check {:mvn/version "1.0.0"}
babashka/babashka.curl {:mvn/version "0.0.3"}
orchestra/orchestra {:mvn/version "2021.01.01-1"}
io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:git/sha "2d69f33d7980c3353b246c28f72ffeafbd9f2fab"}
com.yetanalytics.lrs/test-runner
{:git/url "https://github.com/yetanalytics/lrs-test-runner.git"
:git/sha "8bd5be7816288e85f5c07fc11bf8cf53667e72da"
:exclusions [org.clojure/data.json]}
com.yetanalytics/datasim
{:git/url "https://github.com/yetanalytics/datasim.git"
:git/sha "684fdefed81972093b56556d7f60a637457a6a06"
:git/tag "v0.1.2"
:exclusions [org.clojure/clojure
com.yetanalytics/xapi-schema]}}}
;; Build alias invoked like clojure -Xbuild uber
:build
{:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.267"}}
:extra-paths ["src/build"]
:ns-default lrsql.build}
;; Alias for dev so you can use from repl w/o breakage
;; Note the :extra-deps instead of :replace-deps
:build-dev
{:extra-deps {com.github.seancorfield/depstar {:mvn/version "2.1.267"}}
:extra-paths ["src/build"]}
:nvd
{:replace-deps {nvd-clojure/nvd-clojure {:mvn/version "2.6.0"}}
:ns-default nvd.task}
:doc
{:replace-deps {com.yetanalytics/markdoc {:git/url "https://github.com/yetanalytics/markdoc"
:sha "1a57b934dc92e539e858223ef33eb6a5fcf439a0"}}
:exec-fn com.yetanalytics.markdoc/convert
:exec-args {:in-root "doc/"
:out-root "target/bundle/doc/"
:template-file "resources/lrsql/doc/docs.html.template"}}}}