mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
13 lines
343 B
Clojure
13 lines
343 B
Clojure
{:dev
|
|
{:plugins [[lein-ancient "0.6.10"]]
|
|
:dependencies [[clj-http "2.1.0"]]
|
|
:jvm-opts ["-Xms50m" "-Xmx200m" "-XX:+UseG1GC"]
|
|
:main ^:skip-aot uxbox.main}
|
|
|
|
:uberjar
|
|
{:jar-exclusions [#"\.swp|\.swo|user\.clj" #"^media"]
|
|
:jar-name "uxbox.jar"
|
|
:uberjar-name "uxbox-backend.jar"
|
|
:main uxbox.main
|
|
:aot :all
|
|
:target-path "dist/"}}
|