12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- (defproject hello "0.1.0-SNAPSHOT"
- :description "TechEmpower Luminus benchmark"
- :url "https://github.com/TechEmpower/FrameworkBenchmarks"
- :dependencies [[org.clojure/clojure "1.10.0"]
- [cheshire "5.7.0"]
- [selmer "1.10.7"]
- [markdown-clj "0.9.98"]
- [metosin/muuntaja "0.2.1"]
- [metosin/ring-http-response "0.8.2"]
- [bouncer "1.0.1"]
- [org.webjars/bootstrap "4.2.1"]
- [org.webjars/font-awesome "5.6.1"]
- [org.webjars.bower/tether "1.4.4"]
- [org.webjars/jquery "3.3.1"]
- [org.clojure/tools.logging "0.4.1"]
- [com.taoensso/tower "3.0.2"]
- [compojure "1.5.2"]
- [ring-webjars "0.1.1"]
- [ring/ring-defaults "0.2.3"]
- [mount "0.1.11"]
- [cprop "0.1.10"]
- [org.clojure/tools.cli "0.3.5"]
- [luminus-nrepl "0.1.4"]
- [org.webjars/webjars-locator-jboss-vfs "0.1.0"]
- [luminus-immutant "0.2.3"]
- [luminus-migrations "0.3.0"]
- [conman "0.6.3"]
- [org.postgresql/postgresql "42.2.5"]
- [luminus-log4j "0.1.5"]]
- :min-lein-version "2.0.0"
- :jvm-opts ["-server" "-Dconf=.lein-env"]
- :source-paths ["src/clj"]
- :resource-paths ["resources"]
- :main hello.core
- :migratus {:store :database :db ~(get (System/getenv) "DATABASE_URL")}
- :plugins [[lein-cprop "1.0.1"]
- [migratus-lein "0.2.6"]]
- :profiles
- {:uberjar {:omit-source true
- :jvm-opts ["-D\"clojure.compiler.direct-linking=true\""]
- :aot :all
- :uberjar-name "hello.jar"
- :source-paths ["env/prod/clj"]
- :resource-paths ["env/prod/resources"]}
- :dev [:project/dev :profiles/dev]
- :test [:project/test :profiles/test]
- :project/dev {:dependencies [[prone "1.1.4"]
- [ring/ring-mock "0.3.0"]
- [ring/ring-devel "1.5.1"]
- [pjstadig/humane-test-output "0.8.1"]
- [mvxcvi/puget "1.0.1"]]
- :source-paths ["env/dev/clj" "test/clj"]
- :resource-paths ["env/dev/resources"]
- :repl-options {:init-ns user}
- :injections [(require 'pjstadig.humane-test-output)
- (pjstadig.humane-test-output/activate!)]}
- :project/test {:resource-paths ["env/dev/resources" "env/test/resources"]}
- :profiles/dev {}
- :profiles/test {}})
|