From 9e31d40bf41f3c82a5eb03d4d785431ea4ed8984 Mon Sep 17 00:00:00 2001 From: Josha von Gizycki Date: Wed, 28 Mar 2018 16:35:08 +0200 Subject: [PATCH] use buddy-hashers instead of buddy --- project.clj | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/project.clj b/project.clj index 83fa128..59e82b5 100644 --- a/project.clj +++ b/project.clj @@ -8,16 +8,13 @@ [clojurewerkz/neocons "3.2.0" :exclusions [commons-codec]] [hiccup "1.0.5"] - [buddy "2.0.0" - :exclusions [cheshire - commons-codec - com.fasterxml.jackson.core/jackson-core - com.fasterxml.jackson.core/jackson-dataformat-smile - com.fasterxml.jackson.core/jackson-dataformat-cbor]]] + [buddy/buddy-hashers "1.3.0" + :exclusions [commons-codec]]] :plugins [[lein-ring "0.9.7"]] :ring {:handler wanijo.handler/app} - :profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] - [ring/ring-mock "0.3.0"]] - :plugins [[lein-less "1.7.5"]]}} + :profiles + {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] + [ring/ring-mock "0.3.0"]] + :plugins [[lein-less "1.7.5"]]}} :less {:source-paths ["resources/app/stylesheets"] :target-path "resources/public/css"})