forked from NoahTheDuke/netrunner-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
57 lines (51 loc) · 2.25 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
50
51
52
53
54
55
56
57
{:paths ["src" "resources"]
:deps {
org.clojure/clojure {:mvn/version "1.10.2"}
zprint/zprint {:mvn/version "1.1.1"}
cheshire/cheshire {:mvn/version "5.10.0"}
semantic-csv/semantic-csv {:mvn/version "0.2.1-alpha1"}
http-kit/http-kit {:mvn/version "2.5.3"}
com.stuartsierra/dependency {:mvn/version "1.0.0"}
ubergraph/ubergraph {:mvn/version "0.8.2"}
medley/medley {:mvn/version "1.3.0"}
cond-plus/cond-plus {:mvn/version "1.1.0"}
}
:aliases
{
:repl/rebel {:extra-deps {nrepl/nrepl {:mvn/version "0.8.3"}
cider/cider-nrepl {:mvn/version "0.26.0"}
com.bhauman/rebel-readline {:mvn/version "0.1.4"}
criterium/criterium {:mvn/version "0.4.6"}
com.clojure-goes-fast/clj-java-decompiler {:mvn/version "0.3.0"}
}
:jvm-opts ["-Xmx6g"]
:main-opts ["-m" "nrepl.cmdline"
"--middleware" "[cider.nrepl/cider-middleware]"
"-i"
"-f" "rebel-readline.main/-main"]}
:run {:main-opts ["-m" "nr-data.core"]}
:combine {:ns-default nr-data.combine
:exec-fn combine-for-jnet}
:csv {:ns-default nr-data.csv
:exec-fn build-from-csv}
:json {:ns-default nr-data.json
:exec-fn convert-to-json}
:download {:ns-default nr-data.download
:exec-fn download-from-nrdb}
:quotes {:ns-default nr-data.quotes
:exec-fn build-quotes}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.0"}}}
:runner {:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "b6b3193fcc42659d7e46ecd1884a228993441182"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "test"]}
:uberjar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.193"}}
:exec-fn hf.depstar/uberjar
:exec-args {:aot true
:jar "nr_data.jar"
:main-class "nr-data.core"
:sync-pom true}}
}
}