From 325184d47741b2c1dcbf7a4e9c9070fb5158e486 Mon Sep 17 00:00:00 2001 From: Ryan Senior <ryan@metabase.com> Date: Wed, 7 Nov 2018 09:39:03 -0600 Subject: [PATCH] Bump the `java.classpath` and `tools.namespace` versions Bumping `java.classpath` to `0.3.0` fixes the `classpath` function on JDK 9+. --- project.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 5e81487a2b3..98aea335001 100644 --- a/project.clj +++ b/project.clj @@ -17,12 +17,12 @@ [org.clojure/core.match "0.3.0-alpha4"] ; optimized pattern matching library for Clojure [org.clojure/core.memoize "0.5.9"] ; needed by core.match; has useful FIFO, LRU, etc. caching mechanisms [org.clojure/data.csv "0.1.3"] ; CSV parsing / generation - [org.clojure/java.classpath "0.2.3"] ; examine the Java classpath from Clojure programs + [org.clojure/java.classpath "0.3.0"] ; examine the Java classpath from Clojure programs [org.clojure/java.jdbc "0.7.6"] ; basic JDBC access from Clojure [org.clojure/math.combinatorics "0.1.4"] ; combinatorics functions [org.clojure/math.numeric-tower "0.0.4"] ; math functions like `ceil` [org.clojure/tools.logging "0.4.1"] ; logging framework - [org.clojure/tools.namespace "0.2.10"] + [org.clojure/tools.namespace "0.2.11"] [amalloy/ring-buffer "1.2.1" :exclusions [org.clojure/clojure org.clojure/clojurescript]] ; fixed length queue implementation, used in log buffering -- GitLab