-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
45 lines (38 loc) · 1.51 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
{:paths ["src" "classes"]
:deps
{org.clojure/clojure {:mvn/version "1.10.1"}
;; Async processing
org.clojure/core.async {:mvn/version "1.0.567"}
;; Logging
org.clojure/tools.logging {:mvn/version "1.0.0"}
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.30"}
org.slf4j/jul-to-slf4j {:mvn/version "1.7.30"}
;; Utilities
org.clojure/tools.cli {:mvn/version "1.0.194"}
cronjure {:mvn/version "0.1.1"}
mount {:mvn/version "0.1.16"}
juxt/dirwatch {:mvn/version "0.2.5"}
;; Ring-based HTTP server
metosin/reitit-core {:mvn/version "0.4.2"}
metosin/reitit-ring {:mvn/version "0.4.2"}
metosin/reitit-middleware {:mvn/version "0.4.2"}
metosin/reitit-spec {:mvn/version "0.4.2"}
ring/ring-defaults {:mvn/version "0.3.2"}
ring/ring-jetty-adapter {:mvn/version "1.8.0"}
;; XProc implementation
com.xmlcalabash/xmlcalabash {:mvn/version "1.1.30-99"
:exclusions [isorelax/isorelax
relaxngDatatype/relaxngDatatype
commons-logging/commons-logging]}}
:mvn/repos
{"restlet" {:url "https://maven.restlet.com"}}
:aliases
{:dev
{:extra-paths ["dev"]}
:test
{:extra-paths ["test"]
:extra-deps {clj-http {:mvn/version "3.10.1"
:exclusions [commons-logging/commons-logging]}
com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}}}}}