score-the-pigs/deps.edn

63 lines
3.4 KiB
Clojure
Raw Permalink Normal View History

2025-03-14 22:11:54 +00:00
{:mvn/local-repo "vendor"
:paths ["src" "resources" "target/resources"]
2025-03-11 23:42:37 +00:00
:deps {com.biffweb/biff {:git/url "https://github.com/jacobobryant/biff"
:git/sha "ada149e"
:git/tag "v1.8.2"
:exclusions [com.xtdb/xtdb-core
com.xtdb/xtdb-rocksdb
com.xtdb/xtdb-jdbc]}
com.biffweb/xtdb-mock {:git/url "https://github.com/jacobobryant/biff"
:git/sha "92d78a1"
:git/tag "v0.7.18"
:deps/root "libs/xtdb-mock"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.894"}
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}
metosin/muuntaja {:mvn/version "0.6.8"}
2025-03-14 22:12:15 +00:00
ring/ring-core {:mvn/version "2.0.0-alpha1"}
2025-03-11 23:42:37 +00:00
ring/ring-defaults {:mvn/version "0.3.4"}
org.clojure/clojure {:mvn/version "1.11.3"}
com.github.clj-easy/graal-build-time {:mvn/version "1.0.5"}
;; Notes on logging: https://gist.github.com/jacobobryant/76b7a08a07d5ef2cc076b048d078f1f3
;; org.slf4j/slf4j-simple {:mvn/version "2.0.0-alpha5"}
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.36"}
org.slf4j/jul-to-slf4j {:mvn/version "1.7.36"}
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.36"}
org.slf4j/slf4j-api {:mvn/version "2.0.13"}
com.taoensso/slf4j-telemere {:mvn/version "1.0.0-beta14"}
com.taoensso/telemere {:mvn/version "1.0.0-beta14"}
2025-03-12 19:54:45 +00:00
org.sqids/sqids-clojure {:mvn/version "1.0.15"}
2025-03-11 23:42:37 +00:00
org.xerial/sqlite-jdbc {:mvn/version "3.45.2.0"}
com.github.seancorfield/honeysql {:mvn/version "2.6.1126"}
migratus/migratus {:mvn/version "1.5.6"}
2025-04-11 17:36:52 +00:00
babashka/fs {:mvn/version "0.5.24"}
babashka/process {:mvn/version "0.6.23"}}
2025-03-11 23:42:37 +00:00
:aliases
2025-04-10 19:48:36 +00:00
{:dev {:extra-deps {com.biffweb/tasks {:git/url "https://github.com/jacobobryant/biff", :git/sha "ada149e", :git/tag "v1.8.2", :deps/root "libs/tasks"}
com.github.flow-storm/clojure {:mvn/version "1.12.0-3"}
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.1.1"}}
2025-03-11 23:42:37 +00:00
:extra-paths ["dev" "test"]
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
"-XX:+CrashOnOutOfMemoryError"
2025-04-10 19:48:36 +00:00
"-Dbiff.env.BIFF_PROFILE=dev"
"-Dclojure.storm.instrumentEnable=true"
"-Dclojure.storm.instrumentOnlyPrefixes=com.score-the-pigs."]
2025-03-11 23:42:37 +00:00
:main-opts ["-m" "com.biffweb.task-runner" "tasks/tasks"]}
:prod {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
"-XX:+CrashOnOutOfMemoryError"
"-Dbiff.env.BIFF_PROFILE=prod"]
2025-03-14 20:48:59 +00:00
:main-opts ["-m" "com.biffweb.my-project"]}
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.10.7"
:git/sha "573711e"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}
:outdated {;; Note that it is `:deps`, not `:extra-deps`
:deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}}}