-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeps.edn
More file actions
35 lines (33 loc) · 1.81 KB
/
deps.edn
File metadata and controls
35 lines (33 loc) · 1.81 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
{:paths ["src"]
;; TODO: figure out how to configure logging
;; When this package is added, no logging statements appear in
;; console by default (compojure-api integration)
:deps
{org.clojure/clojure {:mvn/version "1.9.0"}}
;; aliases
;; resolve-deps aliases (-R) affect dependency resolution, options:
;; :extra-deps - specifies extra deps to add to :deps
;; :override-deps - specifies a coordinate to use instead of that in :deps
;; :default-deps - specifies a coordinate to use for a lib if one isn't found
;; make-classpath aliases (-C) affect the classpath generation, options:
;; :extra-paths - vector of additional paths to add to the classpath
;; :classpath-overrides - map of lib to path that overrides the result of resolving deps
:aliases {:depstar {:extra-deps {seancorfield/depstar {:mvn/version "1.0.94"}}}
:dev
{:extra-deps
{org.clojure/test.check {:mvn/version "0.9.0"}
org.clojure/tools.trace {:mvn/version "0.7.9"}
org.clojure/tools.nrepl {:mvn/version "0.2.13"}
com.cognitect/transcriptor {:mvn/version "0.1.5"}
acyclic/squiggly-clojure {:mvn/version "0.1.9-SNAPSHOT"
:exclusions [org.clojure/tools.reader]}
com.velisco/strgen {:mvn/version "0.1.5"
:exclusions [org.clojure/test.check]}
vvvvalvalval/datomock {:mvn/version "0.2.0"}}}
:datomic-pro
{:extra-deps
{com.datomic/datomic-pro {:mvn/version "1.0.6165"
:exclusions [org.slf4j/slf4j-nop
org.slf4j/slf4j-log4j12]}
com.amazonaws/aws-java-sdk-dynamodb {:mvn/version "1.11.600"}}}
:extra-paths ["test"]}}