2021-09-23 16:15:01 +00:00
|
|
|
{:paths ["src" "feature-xml"
|
2020-05-02 16:31:36 +00:00
|
|
|
"feature-yaml" "feature-csv" "feature-transit"
|
|
|
|
|
"feature-java-time" "feature-java-nio"
|
2020-09-22 13:10:39 +00:00
|
|
|
"feature-httpkit-client" "feature-httpkit-server"
|
2020-10-14 11:51:23 +00:00
|
|
|
"feature-lanterna"
|
2021-01-23 13:02:00 +00:00
|
|
|
"feature-core-match"
|
2021-01-23 21:47:35 +00:00
|
|
|
"feature-hiccup"
|
2021-01-24 20:07:07 +00:00
|
|
|
"feature-test-check"
|
|
|
|
|
"feature-spec-alpha"
|
2021-05-06 10:53:59 +00:00
|
|
|
"feature-selmer"
|
2021-09-01 09:36:24 +00:00
|
|
|
"feature-logging"
|
2021-01-29 22:18:15 +00:00
|
|
|
"pods/src"
|
2020-05-13 12:13:57 +00:00
|
|
|
"babashka.nrepl/src"
|
2020-10-19 14:15:54 +00:00
|
|
|
"depstar/src" "process/src"
|
2020-12-13 10:41:20 +00:00
|
|
|
"deps.clj/src" "deps.clj/resources"
|
2020-05-09 12:11:20 +00:00
|
|
|
"resources" "sci/resources"],
|
2021-12-02 19:47:09 +00:00
|
|
|
:deps {org.clojure/clojure {:mvn/version "1.11.0-alpha3"},
|
2021-01-29 22:18:15 +00:00
|
|
|
borkdude/sci {:local/root "sci"}
|
2021-05-16 21:13:10 +00:00
|
|
|
babashka/babashka.curl {:local/root "babashka.curl"}
|
2021-02-05 22:29:23 +00:00
|
|
|
babashka/fs {:local/root "fs"}
|
2021-11-28 14:56:17 +00:00
|
|
|
babashka/babashka.core {:local/root "babashka.core"}
|
2020-01-06 19:40:02 +00:00
|
|
|
borkdude/graal.locking {:mvn/version "0.0.2"},
|
2021-11-05 19:22:18 +00:00
|
|
|
org.clojure/core.async {:mvn/version "1.4.627"},
|
2021-02-28 09:49:07 +00:00
|
|
|
org.clojure/tools.cli {:mvn/version "1.0.206"},
|
2020-02-19 21:47:36 +00:00
|
|
|
org.clojure/data.csv {:mvn/version "1.0.0"},
|
2021-07-15 08:52:29 +00:00
|
|
|
cheshire/cheshire {:mvn/version "5.10.1"}
|
2020-02-21 19:08:00 +00:00
|
|
|
org.clojure/data.xml {:mvn/version "0.2.0-alpha6"}
|
2021-07-15 09:18:37 +00:00
|
|
|
clj-commons/clj-yaml {:mvn/version "0.7.107"}
|
2020-04-24 13:08:26 +00:00
|
|
|
com.cognitect/transit-clj {:mvn/version "1.0.324"}
|
2021-01-24 20:07:07 +00:00
|
|
|
org.clojure/test.check {:mvn/version "1.1.0"}
|
2020-05-09 12:11:20 +00:00
|
|
|
nrepl/bencode {:mvn/version "1.1.0"}
|
2020-10-21 12:31:59 +00:00
|
|
|
seancorfield/next.jdbc {:mvn/version "1.1.610"}
|
2020-10-21 12:25:54 +00:00
|
|
|
org.postgresql/postgresql {:mvn/version "42.2.18"}
|
2020-10-21 12:31:59 +00:00
|
|
|
org.hsqldb/hsqldb {:mvn/version "2.5.1"}
|
|
|
|
|
datascript/datascript {:mvn/version "1.0.1"}
|
2021-02-26 21:17:24 +00:00
|
|
|
http-kit/http-kit {:mvn/version "2.5.3"}
|
2020-10-18 15:15:16 +00:00
|
|
|
babashka/clojure-lanterna {:mvn/version "0.9.8-SNAPSHOT"}
|
2021-01-23 21:47:35 +00:00
|
|
|
org.clojure/core.match {:mvn/version "1.0.0"}
|
2021-04-04 14:22:45 +00:00
|
|
|
hiccup/hiccup {:mvn/version "2.0.0-alpha2"}
|
2021-10-25 09:33:21 +00:00
|
|
|
rewrite-clj/rewrite-clj {:mvn/version "1.0.699-alpha"}
|
2021-07-14 14:30:27 +00:00
|
|
|
selmer/selmer {:mvn/version "1.12.44"}
|
2021-07-10 20:14:06 +00:00
|
|
|
com.taoensso/timbre {:mvn/version "5.1.2"}
|
2021-11-06 19:01:44 +00:00
|
|
|
org.clojure/tools.logging {:mvn/version "1.1.0"}}
|
2021-03-07 12:56:12 +00:00
|
|
|
:aliases {:babashka/dev
|
2020-01-14 16:12:57 +00:00
|
|
|
{:main-opts ["-m" "babashka.main"]}
|
|
|
|
|
:profile
|
|
|
|
|
{:extra-deps
|
2021-07-15 08:52:29 +00:00
|
|
|
{com.clojure-goes-fast/clj-async-profiler {:mvn/version "0.5.0"}}
|
2020-01-14 16:12:57 +00:00
|
|
|
:extra-paths ["test"]
|
2021-07-10 18:34:38 +00:00
|
|
|
:jvm-opts ["-Djdk.attach.allowAttachSelf"
|
|
|
|
|
"-Dclojure.compiler.direct-linking=true"]
|
2020-06-17 09:45:16 +00:00
|
|
|
:main-opts ["-m" "babashka.profile"]}
|
|
|
|
|
:lib-tests
|
2021-07-25 21:49:01 +00:00
|
|
|
{:extra-paths ["process/src" "process/test" "test-resources/lib_tests"]
|
2021-11-27 14:58:24 +00:00
|
|
|
:extra-deps {org.clj-commons/clj-http-lite {:mvn/version "0.4.392"}
|
2021-12-08 17:26:17 +00:00
|
|
|
org.babashka/spec.alpha {:git/url "https://github.com/babashka/spec.alpha"
|
|
|
|
|
:sha "9597a68339ab6be83323345fc0cea4ce848266b9"}
|
2020-08-09 20:13:14 +00:00
|
|
|
lambdaisland/regal {:git/url "https://github.com/lambdaisland/regal"
|
2020-09-21 08:56:33 +00:00
|
|
|
:sha "f902d2c43121f9e1c48603d6eb99f5900eb6a9f6"}
|
2020-08-09 20:13:14 +00:00
|
|
|
weavejester/medley {:git/url "https://github.com/weavejester/medley"
|
|
|
|
|
:sha "a4e5fb5383f5c0d83cb2d005181a35b76d8a136d"}
|
|
|
|
|
cprop/cprop {:mvn/version "0.1.16"}
|
|
|
|
|
comb/comb {:mvn/version "0.1.1"}
|
2020-06-17 11:30:22 +00:00
|
|
|
mvxcvi/arrangement {:mvn/version "1.2.0"}
|
|
|
|
|
org.clojure/data.zip {:mvn/version "1.0.0"}
|
2020-08-09 20:13:14 +00:00
|
|
|
clojure-csv/clojure-csv {:mvn/version "2.0.2"}
|
2020-06-17 11:30:22 +00:00
|
|
|
org.clojure/math.combinatorics {:mvn/version "0.1.6"}
|
2020-08-09 20:13:14 +00:00
|
|
|
doric/doric {:mvn/version "0.9.0"}
|
|
|
|
|
henryw374/cljc.java-time
|
2020-06-17 11:30:22 +00:00
|
|
|
{:git/url "https://github.com/henryw374/cljc.java-time.git"
|
|
|
|
|
:sha "e3d184b78e933322b3fcaa6ca66cbb8f42a6b35c"}
|
2020-08-09 20:13:14 +00:00
|
|
|
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.1"}
|
|
|
|
|
aero/aero {:mvn/version "1.1.6"}
|
2020-06-17 11:30:22 +00:00
|
|
|
org.clojure/data.generators {:mvn/version "1.0.0"}
|
2020-08-09 20:13:14 +00:00
|
|
|
honeysql/honeysql {:mvn/version "1.0.444"}
|
2021-05-14 10:04:56 +00:00
|
|
|
com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc2"}
|
2020-08-11 16:07:29 +00:00
|
|
|
minimallist/minimallist {:mvn/version "0.0.6"}
|
2020-09-09 21:03:15 +00:00
|
|
|
circleci/bond {:mvn/version "0.4.0"}
|
2021-03-14 20:04:55 +00:00
|
|
|
version-clj/version-clj {:mvn/version "2.0.1"}
|
2021-02-13 09:48:59 +00:00
|
|
|
gaka/gaka {:mvn/version "0.3.0"}
|
2021-04-14 21:27:31 +00:00
|
|
|
failjure/failjure {:mvn/version "2.1.1"}
|
2021-05-07 09:58:18 +00:00
|
|
|
io.helins/binf {:mvn/version "1.1.0-beta0"}
|
2021-06-09 08:39:43 +00:00
|
|
|
rm-hull/jasentaa {:mvn/version "0.2.5"}
|
2021-06-21 19:58:41 +00:00
|
|
|
slingshot/slingshot {:mvn/version "0.12.2"}
|
2021-07-05 19:12:11 +00:00
|
|
|
io.replikativ/hasch {:mvn/version "0.3.7"}
|
2021-07-07 08:01:36 +00:00
|
|
|
com.grammarly/omniconf {:mvn/version "0.4.3"}
|
2021-07-10 15:16:04 +00:00
|
|
|
crispin/crispin {:mvn/version "0.3.8"}
|
2021-07-21 10:35:38 +00:00
|
|
|
org.clojure/data.json {:mvn/version "2.4.0"}
|
2021-08-11 08:52:00 +00:00
|
|
|
clj-commons/multigrep {:mvn/version "0.5.0"}
|
2021-09-01 09:36:24 +00:00
|
|
|
amperity/vault-clj {:mvn/version "1.0.4"}
|
2021-09-26 21:47:39 +00:00
|
|
|
java-http-clj/java-http-clj {:mvn/version "0.4.3"}
|
2021-10-17 21:12:28 +00:00
|
|
|
com.stuartsierra/component {:mvn/version "1.0.0"}
|
|
|
|
|
org.clojars.askonomm/ruuter {:mvn/version "1.2.2"}
|
2021-11-27 14:58:24 +00:00
|
|
|
org.clj-commons/digest {:mvn/version "1.4.100"}
|
2021-12-08 17:46:53 +00:00
|
|
|
hato/hato {:mvn/version "0.8.2"}
|
|
|
|
|
better-cond/better-cond {:mvn/version "2.1.1"}
|
2021-12-08 20:31:58 +00:00
|
|
|
org.clojure/core.specs.alpha {:mvn/version "0.2.62"}
|
|
|
|
|
reifyhealth/specmonstah {:mvn/version "2.0.0"}
|
|
|
|
|
exoscale/coax {:mvn/version "1.0.0-alpha14"}}
|
2021-09-23 16:15:01 +00:00
|
|
|
:classpath-overrides {org.clojure/clojure nil
|
2021-12-08 17:46:53 +00:00
|
|
|
org.clojure/spec.alpha nil}}
|
2020-10-21 12:25:54 +00:00
|
|
|
:clj-nvd
|
|
|
|
|
{:extra-deps {clj-nvd/clj-nvd {:git/url "https://github.com/miikka/clj-nvd.git"
|
|
|
|
|
:sha "f2ec98699e057a379baf170cb49cf7ad76874a70"}}
|
2021-12-04 23:00:04 +00:00
|
|
|
:main-opts ["-m" "clj-nvd.core"]}
|
|
|
|
|
:test ;; added by neil
|
|
|
|
|
{:extra-paths ["test"]
|
|
|
|
|
:extra-deps {io.github.cognitect-labs/test-runner
|
|
|
|
|
{:git/tag "v0.5.0" :git/sha "b3fd0d2"}}
|
|
|
|
|
:main-opts ["-m" "cognitect.test-runner"]
|
|
|
|
|
:exec-fn cognitect.test-runner.api/test}}}
|