about summary refs log tree commit diff
path: root/project.clj
diff options
context:
space:
mode:
authorMorgan Astra <givengravity@gmail.com>2018-11-15 01:02:48 -0800
committerGitHub <noreply@github.com>2018-11-15 01:02:48 -0800
commit04d94c8935377e68292f78671428d564395b1641 (patch)
treed0d5e2db1908093592d25a8729f6f95ead860a6e /project.clj
parentf81ef6b889807dd0edbd3249e1069224ab87782a (diff)
parentd8eaeb2eb9b2dbb679a280f2e5ec92ce1f5a7c5e (diff)
Merge pull request #92 from witch-house/fix-ring-devel-dep
Put ring-devel back in main dependencies
Diffstat (limited to 'project.clj')
-rw-r--r--project.clj13
1 files changed, 7 insertions, 6 deletions
diff --git a/project.clj b/project.clj
index a0f77fd..dcd42d5 100644
--- a/project.clj
+++ b/project.clj
@@ -2,11 +2,13 @@
   :description "Pronoun.is is a website for personal pronoun usage examples"
   :url "https://pronoun.is"
   :license "GNU Affero General Public License 3.0"
-  :dependencies [[org.clojure/clojure "1.9.0"]
-                 [compojure "1.6.1"]
-                 [ring/ring-jetty-adapter "1.7.1"]
+  :dependencies [[compojure "1.6.1"]
                  [environ "1.1.0"]
-                 [hiccup "1.0.5"]]
+                 [hiccup "1.0.5"]
+                 [lambdaisland/ring.middleware.logger "0.5.1"]
+                 [org.clojure/clojure "1.9.0"]
+                 [ring/ring-devel "1.7.1"]
+                 [ring/ring-jetty-adapter "1.7.1"]]
   :min-lein-version "2.0.0"
   :plugins [[environ/environ.lein "0.2.1"]
             [lein-ring "0.9.7"]]
@@ -14,6 +16,5 @@
   :uberjar-name "pronouns-standalone.jar"
   ;; FIXME morgan.astra <2018-11-14 Wed>
   ;; Is this production profile used for anything?
-  :profiles {:production {:env {:production true}}
-             :test {:dependencies [[ring/ring-devel "1.7.1"]]}}
+  :profiles {:production {:env {:production true}}}
   :ring {:handler pronouns.web/app})