|
@@ -1,67 +1,66 @@
|
|
|
(defproject hello "0.1.0-SNAPSHOT"
|
|
|
|
|
|
- :description "Luminus framework benchmarks"
|
|
|
- :url "https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Clojure/luminus"
|
|
|
+ :description "FIXME: write description"
|
|
|
+ :url "http://example.com/FIXME"
|
|
|
|
|
|
:dependencies [[org.clojure/clojure "1.8.0"]
|
|
|
- [selmer "1.0.0"]
|
|
|
- [markdown-clj "0.9.85"]
|
|
|
- [environ "1.0.1"]
|
|
|
+ [selmer "1.0.2"]
|
|
|
+ [markdown-clj "0.9.86"]
|
|
|
[ring-middleware-format "0.7.0"]
|
|
|
[metosin/ring-http-response "0.6.5"]
|
|
|
[bouncer "1.0.0"]
|
|
|
- [org.webjars/bootstrap "3.3.6"]
|
|
|
- [org.webjars/jquery "2.2.0"]
|
|
|
+ [org.webjars/bootstrap "4.0.0-alpha.2"]
|
|
|
+ [org.webjars/font-awesome "4.5.0"]
|
|
|
+ [org.webjars.bower/tether "1.1.1"]
|
|
|
+ [org.webjars/jquery "2.2.1"]
|
|
|
[org.clojure/tools.logging "0.3.1"]
|
|
|
- [org.slf4j/slf4j-log4j12 "1.7.13"]
|
|
|
- [org.apache.logging.log4j/log4j-core "2.5"]
|
|
|
[com.taoensso/tower "3.0.2"]
|
|
|
- [compojure "1.4.0"]
|
|
|
+ [compojure "1.5.0"]
|
|
|
[ring-webjars "0.1.1"]
|
|
|
- [ring/ring-defaults "0.1.5"]
|
|
|
- [ring "1.4.0" :exclusions [ring/ring-jetty-adapter]]
|
|
|
- [mount "0.1.8"]
|
|
|
- [luminus-nrepl "0.1.2"]
|
|
|
- [migratus "0.8.8"]
|
|
|
- [conman "0.2.9"]
|
|
|
- [org.postgresql/postgresql "9.4.1208"]
|
|
|
+ [ring/ring-defaults "0.2.0"]
|
|
|
+ [mount "0.1.10"]
|
|
|
+ [cprop "0.1.6"]
|
|
|
+ [org.clojure/tools.cli "0.3.3"]
|
|
|
+ [luminus-nrepl "0.1.4"]
|
|
|
[org.webjars/webjars-locator-jboss-vfs "0.1.0"]
|
|
|
- [luminus-immutant "0.1.0"]]
|
|
|
+ [luminus-immutant "0.1.9"]
|
|
|
+ [luminus-migrations "0.1.0"]
|
|
|
+ [conman "0.4.5"]
|
|
|
+ [org.postgresql/postgresql "9.4-1206-jdbc4"]
|
|
|
+ [luminus-log4j "0.1.3"]]
|
|
|
|
|
|
:min-lein-version "2.0.0"
|
|
|
- :uberjar-name "hello.jar"
|
|
|
- :jvm-opts ["-server"]
|
|
|
+
|
|
|
+ :jvm-opts ["-server" "-Dconf=.lein-env"]
|
|
|
+ :source-paths ["src/clj"]
|
|
|
:resource-paths ["resources"]
|
|
|
|
|
|
:main hello.core
|
|
|
- :migratus {:store :database}
|
|
|
+ :migratus {:store :database :db ~(get (System/getenv) "DATABASE_URL")}
|
|
|
|
|
|
- :plugins [[lein-environ "1.0.1"]
|
|
|
- [migratus-lein "0.2.0"]]
|
|
|
+ :plugins [[lein-cprop "1.0.1"]
|
|
|
+ [migratus-lein "0.2.6"]]
|
|
|
:profiles
|
|
|
{:uberjar {:omit-source true
|
|
|
- :env {:production true}
|
|
|
+
|
|
|
:aot :all
|
|
|
- :source-paths ["env/prod/clj"]}
|
|
|
+ :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.0.0"]
|
|
|
+ :project/dev {:dependencies [[prone "1.0.2"]
|
|
|
[ring/ring-mock "0.3.0"]
|
|
|
[ring/ring-devel "1.4.0"]
|
|
|
[pjstadig/humane-test-output "0.7.1"]
|
|
|
[mvxcvi/puget "1.0.0"]]
|
|
|
|
|
|
|
|
|
- :source-paths ["env/dev/clj"]
|
|
|
- :repl-options {:init-ns hello.core}
|
|
|
+ :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!)]
|
|
|
- ;;when :nrepl-port is set the application starts the nREPL server on load
|
|
|
- :env {:dev true
|
|
|
- :port 3000
|
|
|
- :nrepl-port 7000}}
|
|
|
- :project/test {:env {:test true
|
|
|
- :port 3001
|
|
|
- :nrepl-port 7001}}
|
|
|
+ (pjstadig.humane-test-output/activate!)]}
|
|
|
+ :project/test {:resource-paths ["env/dev/resources" "env/test/resources"]}
|
|
|
:profiles/dev {}
|
|
|
:profiles/test {}})
|