diff --git a/deps.edn b/deps.edn index 59a35a9..5e925ad 100644 --- a/deps.edn +++ b/deps.edn @@ -43,7 +43,7 @@ :main-opts ["-m" "cognitect.test-runner" "-d" "test"]} :jar - {:extra-deps {seancorfield/depstar {:mvn/version "1.1.128"}} + {:extra-deps {seancorfield/depstar {:mvn/version "1.1.132"}} :main-opts ["-m" "hf.depstar.jar" "next-jdbc.jar"]} :deploy {:extra-deps {slipset/deps-deploy {:mvn/version "0.1.1"}} diff --git a/test/next/jdbc/test_fixtures.clj b/test/next/jdbc/test_fixtures.clj index bc004b0..47d3301 100644 --- a/test/next/jdbc/test_fixtures.clj +++ b/test/next/jdbc/test_fixtures.clj @@ -228,10 +228,10 @@ CREATE PROCEDURE FRUITP" (cond (hsqldb?) "() READS SQL DATA DYNAMIC RESULT SETS (comment ;; this is a convenience to bring next.jdbc's test dependencies - ;; into any REPL that has the add-lib branch of tools.deps.alpha + ;; into any REPL that has the add-lib3 branch of tools.deps.alpha ;; which allows me to develop and test next.jdbc inside my work's ;; "everything" REBL environment - (require '[clojure.tools.deps.alpha.repl :refer [add-lib]] + (require '[clojure.tools.deps.alpha.repl :refer [add-libs]] '[clojure.java.io :as io] '[clojure.edn :as edn]) (def repo-path "/Developer/workspace/next.jdbc") @@ -241,8 +241,7 @@ CREATE PROCEDURE FRUITP" (cond (hsqldb?) "() READS SQL DATA DYNAMIC RESULT SETS :aliases :test :extra-deps)) - (doseq [[coord version] test-deps] - (add-lib coord version)) + (add-libs test-deps) ;; now you can load this file... and then you can load other test ;; files and run their tests as needed... which will leave (ds) ;; set to the embedded PostgreSQL datasource -- reset it with this: