From 2b8d4a911e7b46c3570503495fcef05b19e78641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Z=C3=B6ller?= Date: Thu, 4 Mar 2021 15:42:08 +0100 Subject: [PATCH] #49 - Bumped to Testcontainers 1.15.2 --- .gitignore | 1 + project.clj | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ccfbd01..44a3584 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ pom.xml.asc /.lein-* /.nrepl-history /.nrepl-port +.clj-kondo/ .hgignore .hg/ .DS_Store diff --git a/project.clj b/project.clj index 275855c..0834229 100644 --- a/project.clj +++ b/project.clj @@ -7,7 +7,7 @@ :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.10.1"] - [org.testcontainers/testcontainers "1.15.1"]] + [org.testcontainers/testcontainers "1.15.2"]] :aliases {"test" ["run" "-m" "kaocha.runner"] "cljstyle" ["run" "-m" "cljstyle.main"]} @@ -18,11 +18,10 @@ [lambdaisland/kaocha "1.0.641"] [lambdaisland/kaocha-cloverage "1.0-45"] [lambdaisland/kaocha-junit-xml "0.0.76"] - [lambdaisland/kaocha-junit-xml "0.0.76"] [mvxcvi/cljstyle "0.14.0" :exclusions [org.clojure/clojure]] [org.clojure/test.check "1.1.0"] [org.clojure/tools.namespace "1.0.0"] - [org.testcontainers/postgresql "1.15.1"] + [org.testcontainers/postgresql "1.15.2"] [com.fzakaria/slf4j-timbre "0.3.20"]] :source-paths ["dev-src"]}}