mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 16:00:19 -05:00
e9b00339a5
Relevant changes: - ring -> vertx - suricatta -> vertx-pgsql - emails improvements - logging - hybrid sync/async -> full async execution model - database layout refactor
63 lines
2.4 KiB
Clojure
63 lines
2.4 KiB
Clojure
{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
|
|
funcool/promesa {:mvn/version "5.0.0-SNAPSHOT"}
|
|
funcool/cuerdas {:mvn/version "2.2.1"}
|
|
|
|
;; Logging
|
|
org.clojure/tools.logging {:mvn/version "0.5.0"}
|
|
org.apache.logging.log4j/log4j-api {:mvn/version "2.12.1"}
|
|
org.apache.logging.log4j/log4j-core {:mvn/version "2.12.1"}
|
|
org.apache.logging.log4j/log4j-jul {:mvn/version "2.12.1"}
|
|
|
|
funcool/datoteka {:mvn/version "1.1.0"}
|
|
expound/expound {:mvn/version "0.7.2"}
|
|
instaparse/instaparse {:mvn/version "1.4.10"}
|
|
|
|
;; vertx deps
|
|
metosin/reitit-core {:mvn/version "0.3.10"}
|
|
metosin/sieppari {:mvn/version "0.0.0-alpha8"}
|
|
com.cognitect/transit-clj {:mvn/version "0.8.319"}
|
|
io.vertx/vertx-core {:mvn/version "3.8.1"}
|
|
io.vertx/vertx-web {:mvn/version "3.8.1"}
|
|
io.vertx/vertx-pg-client {:mvn/version "3.8.1"}
|
|
;; end verx deps
|
|
|
|
lambdaisland/uri {:mvn/version "1.1.0"}
|
|
|
|
danlentz/clj-uuid {:mvn/version "0.1.9"}
|
|
org.jsoup/jsoup {:mvn/version "1.12.1"}
|
|
hiccup/hiccup {:mvn/version "1.0.5"}
|
|
org.im4java/im4java {:mvn/version "1.4.0"}
|
|
|
|
buddy/buddy-sign {:mvn/version "3.1.0"}
|
|
buddy/buddy-hashers {:mvn/version "1.4.0"}
|
|
|
|
org.xerial.snappy/snappy-java {:mvn/version "1.1.7.3"}
|
|
com.github.spullara.mustache.java/compiler {:mvn/version "0.9.6"}
|
|
commons-io/commons-io {:mvn/version "2.6"}
|
|
com.draines/postal {:mvn/version "2.0.3"
|
|
:exclusions [commons-codec/commons-codec]}
|
|
|
|
;; exception printing
|
|
io.aviso/pretty {:mvn/version "0.1.37"}
|
|
|
|
mount/mount {:mvn/version "0.1.16"}
|
|
environ/environ {:mvn/version "1.1.0"}
|
|
}
|
|
:paths ["src" "vendor" "resources"]
|
|
:aliases
|
|
{:dev
|
|
{:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.4"}
|
|
org.clojure/tools.namespace {:mvn/version "0.3.1"}
|
|
fipp/fipp {:mvn/version "0.6.21"}
|
|
criterium/criterium {:mvn/version "0.4.5"}
|
|
}
|
|
:extra-paths ["test"]}
|
|
:repl {:main-opts ["-m" "rebel-readline.main"]}
|
|
:nrepl {:extra-deps {nrepl/nrepl {:mvn/version "0.6.0"}}
|
|
:main-opts ["-m" "nrepl.cmdline"]}
|
|
:ancient {:main-opts ["-m" "deps-ancient.deps-ancient"]
|
|
:extra-deps {deps-ancient {:mvn/version "RELEASE"}}}
|
|
}}
|
|
|
|
|
|
|