-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
27 lines (26 loc) · 1.04 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
{:paths ["src" "classes" "resources"]
:deps
{org.clojure/clojure {:mvn/version "1.11.3"}
;; Embedded Jetty server and HTTP adapter
ring/ring-jetty-adapter {:mvn/version "1.12.1"}
;; Core HTTP utilities
ring/ring-core {:mvn/version "1.12.1"}
;; JDBC database adapter
com.github.seancorfield/next.jdbc {:mvn/version "1.3.939"}
;; SQLite JDBC driver
org.xerial/sqlite-jdbc {:mvn/version "3.46.1.0"}
;; Hiccup for HTML as Clojure data, server-rendered
hiccup/hiccup {:mvn/version "2.0.0-RC3"}}
:aliases
{:dev {:extra-deps
{clj-http/clj-http {:mvn/version "3.12.3"}}}
:test {;; clj -X:dev:test # at the command line
:extra-paths ["test"]
:extra-deps
{io.github.cognitect-labs/test-runner {:git/tag "v0.5.1"
:git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
:build {:replace-deps {io.github.clojure/tools.build
{:mvn/version "0.9.6"}}
:ns-default build}}}