-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
48 lines (48 loc) · 2.85 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
{:aliases
{:antq {:deps {com.github.liquidz/antq {:mvn/version "2.11.1250"}}
:main-opts ["-m" "antq.core"]}
:cljs-deps {:extra-deps {binaryage/devtools #:mvn{:version "1.0.7"}
thheller/shadow-cljs #:mvn{:version "2.28.19"}}
:extra-paths ["src/cljs/" "src/cljc/" "resources/" "test/cljs/" "test/cljc/"]}
:codox
{:exec-args
{:description "Simulation of discrete event, based on a scheduler engine."
:doc-paths ["docs"]
:metadata {:doc/format :markdown}
:name "Discrete event simulation"
:output-path "tmp/codox"
:source-uri
"https://github.com/hephaistox/automaton-simulation-de/blob/{version}/{filepath}#L{line}"}
:exec-fn codox.main/generate-docs
:extra-deps {codox/codox {:mvn/version "0.10.8"}}}
:common-test
{:exec-fn cognitect.test-runner.api/test
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner"
:sha "3f288f1f16d167723ad87cc35b1dfee3c1681e10"}
org.clojure/tools.namespace #:mvn{:version "1.5.0"}
org.clojure/tools.reader #:mvn{:version "1.5.0"}}
:extra-paths ["test/clj/" "test/cljc/" "test/resources/"]
:jvm-opts ["-Dheph-conf=env/test/config.edn,env/common_config.edn" "-Dhephaistox-in-test=true"]}
:deploy {:exec-args {:installer :remote}
:exec-fn deps-deploy.deps-deploy/deploy
:extra-deps {slipset/deps-deploy {:exclusions [org.slf4j/slf4j-nop]
:mvn/version "0.2.2"}}}
:env-development-repl {:extra-deps {org.clojure/core.async #:mvn{:version "1.6.681"}}
:extra-paths ["env/development/resources/"
"env/development/src/clj/"
"env/development/src/cljc/"]
:jvm-opts ["-Dheph-conf=env/development/config.edn,env/common_config.edn"]
:main-opts ["-m" "automaton-simulation-de.local-repl"]}
:env-development-test
{:exec-fn cognitect.test-runner.api/test
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner"
:sha "3f288f1f16d167723ad87cc35b1dfee3c1681e10"}
org.clojure/tools.namespace {:mvn/version "1.5.0"}
org.clojure/tools.reader {:mvn/version "1.5.0"}}
:jvm-opts ["-Dclojure.tools.logging.factory=clojure.tools.logging.impl/log4j2-factory"
"-Dhephaistox-in-test=true"]
:main-opts ["-m" "cognitect.test-runner" "-r" ".*-test.*" "-d" "test/clj" "-d" "test/cljc"]}}
:deps {juji/editscript #:mvn{:version "0.6.4"}
org.clojars.hephaistox/automaton-core #:mvn{:version "1.6.0"}
org.clojars.hephaistox/automaton-optimization #:mvn{:version "2.4.0"}}
:paths ["src/clj/" "src/cljc/" "src/cljs/" "resources/"]}