forked from borkdude/quickblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
33 lines (32 loc) · 1.52 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
{:paths ["src" "resources"]
:deps {rewrite-clj/rewrite-clj {:mvn/version "1.1.45"}
babashka/fs {:mvn/version "0.1.6"}
babashka/process {:mvn/version "0.4.16"}
org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/data.xml {:mvn/version "0.2.0-alpha6"}
selmer/selmer {:mvn/version "1.12.53"}
markdown-clj/markdown-clj {:mvn/version "1.11.4"}
org.babashka/cli {:mvn/version "0.6.41"}
org.babashka/http-server {:mvn/version "0.1.11"}
babashka/babashka.pods {:git/url "https://github.com/babashka/pods"
:git/sha "93081b75e66fb4c4d161f89e714c6b9e8d55c8d5"}}
:aliases
{:thoughts
{:deps {io.github.ssjoleary/thoughts.bb
{:local/root "."}
org.babashka/cli {:mvn/version "0.6.41"}}
:main-opts ["-m" "babashka.cli.exec" "thoughts.cli" "run"]
:exec-args {:blog-title "REPL adventures"
:blog-description "A blog about blogging quickly"
:about-link "https://github.com/ssjoleary/thoughts"
:twitter-handle "thoughts"}}
:test
{:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:exec-args {:cmd "bb test"}
:main-opts ["-m" "babashka.cli.exec"]
:exec-fn thoughts.test-runner/test}
:clj-1.9 {:extra-deps {org.clojure/clojure {:mvn/version "1.9.0"}}}
:clj-1.10 {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
:clj-1.11 {:extra-deps {org.clojure/clojure {:mvn/version "1.11.1"}}}}}