From 0677210ae3b08355252ef73a3ff19b572cf99c08 Mon Sep 17 00:00:00 2001 From: Gareth M Date: Sun, 14 Jan 2018 19:56:36 +0000 Subject: [PATCH] Make cgrand/moustache a git dependency instead of a clojars dependency. Without this, installation of dependencies fails with TLS error. --- project.clj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index a8495d2..68dc05c 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,8 @@ (defproject enlive-tutorial "0.1.0" :description "Enlive Tutorial" + :plugins [[lein-git-deps "0.0.1-SNAPSHOT"]] :dependencies [[org.clojure/clojure "1.5.1"] [enlive "1.1.1"] - [ring "1.2.0"] - [net.cgrand/moustache "1.1.0"]]) + [ring "1.2.0"]] + :git-dependencies [[github.com:cgrand/moustache.git]] + ) \ No newline at end of file