-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
38 lines (34 loc) · 2.55 KB
/
deps.edn
File metadata and controls
38 lines (34 loc) · 2.55 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
35
36
37
38
{:paths ["src"]
:deps {;;;SOLVERS
org.ojalgo/ojalgo {:mvn/version "56.2.1"}
;;;COBYLA
de.xypron.jcobyla/jcobyla {:mvn/version "1.4"}
;;;HIPPARCHUS
org.hipparchus/hipparchus-core {:mvn/version "4.0.2"}
org.hipparchus/hipparchus-optim {:mvn/version "4.0.2"}
org.hipparchus/hipparchus-fitting {:mvn/version "4.0.2"}
;;;PROVISDOM
provisdom/math {:git/url "https://github.com/Provisdom/math.git"
:git/sha "6e08fd02b7c4505d73440bbea40fe798005696cb"}
provisdom/utility-belt {:git/url "https://github.com/Provisdom/utility-belt.git"
:git/sha "6de65efed4fd7b1eeb3114e0762b15ecba0b65f2"}}
:mvn/repos {#_#_"sonatype-snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots"}
"XypronRelease" {:url "https://rsync.xypron.de/repository"}}
:aliases {:dev {:extra-paths ["siderail"]
:extra-deps {ca.umontreal.iro.simul/ssj {:mvn/version "3.3.2"}
metasoarous/oz {:mvn/version "1.5.6"}}}
;; We need direct linking for properly resolving types in heavy macros and avoiding reflection warnings!
:direct-linking {:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}
:local {:override-deps {provisdom/math {:local/root "../math"}
provisdom/test {:local/root "../test"}
provisdom/utility-belt {:local/root "../utility-belt"}}}
:test {:extra-paths ["test"]
:extra-deps {criterium/criterium {:mvn/version "0.4.6"}
orchestra/orchestra {:mvn/version "2021.01.01-1"}
org.clojure/test.check {:mvn/version "1.1.3"}
provisdom/test
{:git/url "https://github.com/Provisdom/test.git"
:git/sha "95d38491d70515d43e091908dcda9b17a4af61c2"}}}
:test-clj-runner {:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}}
:main-opts ["-m" "kaocha.runner"]}}}