From 496c82d10d9693ce4e22ee46089851110698cd9e Mon Sep 17 00:00:00 2001 From: Juraj Martinka Date: Sat, 28 Jul 2018 00:06:25 +0200 Subject: [PATCH] Add jaxb-api as a dependency since it's not available by default in Java 9+. Without it, `lein gorilla` fails with following exception: ``` ojure.lang.Compiler$CompilerException: java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter, compiling:(org/httpkit/server.clj:1:1) at clojure.lang.Compiler.load (Compiler.java:7391) ``` --- project.clj | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index c085154..4598884 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,7 @@ -(defproject lein-gorilla "0.4.0" +(defproject lein-gorilla "0.5.0-SNAPSHOT" :description "A Leiningen plugin for the Gorilla REPL." :url "https://github.com/JonyEpsilon/lein-gorilla" :license {:name "MIT"} - :dependencies [[gorilla-repl "0.4.0"]] + :dependencies [[gorilla-repl "0.4.0"] + [javax.xml.bind/jaxb-api "2.3.0"]] :eval-in-leiningen true)