-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathdeps.edn
49 lines (42 loc) · 2.03 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
{:deps {org.clojure/clojure {:mvn/version "1.11.3"}
com.walmartlabs/lacinia {:mvn/version "1.2.2"}
com.fasterxml.jackson.core/jackson-core {:mvn/version "2.17.2"}
io.pedestal/pedestal.service {:mvn/version "0.7.0"}
io.pedestal/pedestal.jetty {:mvn/version "0.7.0"}
com.rpl/proxy-plus {:mvn/version "0.0.11"}}
:mvn/repos {"redplanetlabs" {:url "https://nexus.redplanetlabs.com/repository/maven-public-releases"}}
:paths ["src" "resources"]
:deps/prep-lib {:alias :build
:fn prep
:ensure "target/classes"}
:aliases
{:dev
{:extra-deps {clj-http/clj-http {:mvn/version "3.13.0"}
com.walmartlabs/test-reporting {:mvn/version "1.2"}
com.stuartsierra/component {:mvn/version "1.1.0"}
expound/expound {:mvn/version "0.9.0"}
hato/hato {:mvn/version "1.0.0"}
nubank/matcher-combinators {:mvn/version "3.9.1"}
io.github.hlship/trace {:mvn/version "1.3"}
org.clj-commons/pretty {:mvn/version "3.0.0"}
io.github.tonsky/clj-reload {:mvn/version "0.7.1"}
ch.qos.logback/logback-classic {:mvn/version "1.5.6"}}
:jvm-opts ["-Xmx500m"]
:extra-paths ["test" "dev-resources"
;; Run clj -T:build prep to download sources from npm and move
;; them to target/classes. Unfortunate manual step.
"target/classes"]}
;; clj -Xdev:test
:test
{:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:exec-fn cognitect.test-runner.api/test}
;; clj -T:build <command>
:build {:deps {io.github.hlship/build-tools {:git/tag "0.10.2" :git/sha "3c446e4"}}
:ns-default build}}
:net.lewisship.build/scm
{:url "https://github.com/walmartlabs/lacinia-pedestal"
:license :asl}
:codox/config
{:description "Expose Lacinia GraphQL as Pedestal endpoints"
:source-uri "https://github.com/walmartlabs/lacinia-pedestal/blob/master/{filepath}#L{line}"}}