diff --git a/project.clj b/project.clj index 7d8566d..82b9f00 100644 --- a/project.clj +++ b/project.clj @@ -1,8 +1,10 @@ -(defproject lein-neo4j "0.1.0" +(defproject joshavg/lein-neo4j "0.1.0" :description "neo4j server invokable from leiningen" :url "https://gitea.heevyis.ninja/josha/lein-neo4j" :license {:name "GPL-3.0" :url "https://opensource.org/licenses/GPL-3.0"} - :dependencies [[org.neo4j/neo4j "3.4.4"] - [org.neo4j.app/neo4j-server "3.4.4"]] + :dependencies [[org.neo4j/neo4j "3.4.4" + :exclusions [com.github.ben-manes.caffeine/caffeine]] + [org.neo4j.app/neo4j-server "3.4.4" + :exclusions [com.github.ben-manes.caffeine/caffeine]]] :eval-in-leiningen true)