Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wardle committed Feb 20, 2024
1 parent e8c279a commit 2eaa317
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{:paths ["src" "resources" "classes"]

:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/data.json {:mvn/version "2.4.0"}
org.clojure/tools.logging {:mvn/version "1.2.4"}
org.clojure/data.json {:mvn/version "2.5.0"}
org.clojure/tools.logging {:mvn/version "1.3.0"}

com.eldrix/dmd {:mvn/version "0.6.146"}
com.eldrix/hermes {:mvn/version "1.2.1026"}}
com.eldrix/dmd {:mvn/version "1.0.174"}
com.eldrix/hermes {:mvn/version "1.4.1351"}}

:aliases {:dev
{:extra-paths ["cmd" "test/src" "test/resources"]}

:build
{:deps {io.github.clojure/tools.build {:git/tag "v0.9.4" :git/sha "76b78fe"}
{:deps {io.github.clojure/tools.build {:git/tag "v0.9.6" :git/sha "8e78bcc"}
slipset/deps-deploy {:mvn/version "RELEASE"}
io.github.borkdude/gh-release-artifact {:git/sha "4a9a74f0e50e897c45df8cc70684360eb30fce80"}}
:ns-default build}

:run
{:extra-paths ["cmd"]
:extra-deps {org.clojure/tools.cli {:mvn/version "1.0.214"}
io.pedestal/pedestal.service {:mvn/version "0.5.10"}
io.pedestal/pedestal.jetty {:mvn/version "0.5.10"}
ch.qos.logback/logback-classic {:mvn/version "1.4.6"}}
:extra-deps {org.clojure/tools.cli {:mvn/version "1.1.230"}
io.pedestal/pedestal.service {:mvn/version "0.6.3"}
io.pedestal/pedestal.jetty {:mvn/version "0.6.3"}
ch.qos.logback/logback-classic {:mvn/version "1.5.0"}}
:main-opts ["-m" "com.eldrix.codelists.cmd"]
:jvm-opts ["--add-opens" "java.base/java.nio=ALL-UNNAMED"
"--add-opens" "java.base/sun.nio.ch=ALL-UNNAMED"]}
Expand All @@ -32,8 +32,8 @@
:test
{:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/sha "7284cda41fb9edc0f3bc6b6185cfb7138fc8a023"}
ch.qos.logback/logback-classic {:mvn/version "1.4.6"}
org.clojure/data.csv {:mvn/version "1.0.1"}}
ch.qos.logback/logback-classic {:mvn/version "1.5.0"}
org.clojure/data.csv {:mvn/version "1.1.0"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test
:jvm-opts ["--add-opens" "java.base/java.nio=ALL-UNNAMED"
Expand Down
2 changes: 1 addition & 1 deletion test/com/eldrix/codelists/core_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

(defn live-test-fixture [f]
(binding [*hermes* (hermes/open "../hermes/snomed.db")
*dmd* (dmd/open-store "../dmd/dmd-2022-05-09.db")]
*dmd* (dmd/open-store "../dmd/dmd-2024-01-29.db")]
(f)
(.close *dmd*)
(hermes/close *hermes*)))
Expand Down

0 comments on commit 2eaa317

Please sign in to comment.