Updated project dependencies (#67)
This commit is contained in:
parent
667a2d0850
commit
390563ac1d
3 changed files with 14 additions and 13 deletions
|
|
@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file. This change
|
||||||
- [#64](https://github.com/javahippie/clj-test-containers/pull/64): Fix container path parameter for copy-file-to-container! in README
|
- [#64](https://github.com/javahippie/clj-test-containers/pull/64): Fix container path parameter for copy-file-to-container! in README
|
||||||
- [#65](https://github.com/javahippie/clj-test-containers/issues/65): Upgrade to testcontainers-java 1.17.6
|
- [#65](https://github.com/javahippie/clj-test-containers/issues/65): Upgrade to testcontainers-java 1.17.6
|
||||||
- [#66](https://github.com/javahippie/clj-test-containers/issues/66): Remove usage of deprecated API calls for cleanup
|
- [#66](https://github.com/javahippie/clj-test-containers/issues/66): Remove usage of deprecated API calls for cleanup
|
||||||
|
- [#67](https://github.com/javahippie/clj-test-containers/issues/67): Update Dependencies
|
||||||
|
|
||||||
## [0.7.3] - 2202-09-30
|
## [0.7.3] - 2202-09-30
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
||||||
20
deps.edn
20
deps.edn
|
|
@ -1,25 +1,25 @@
|
||||||
{:paths ["src" "resources"]
|
{:paths ["src" "resources"]
|
||||||
|
|
||||||
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
|
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
|
||||||
org.testcontainers/testcontainers {:mvn/version "1.17.2"}}
|
org.testcontainers/testcontainers {:mvn/version "1.17.6"}}
|
||||||
|
|
||||||
:aliases {:dev {:extra-paths "dev-src"}
|
:aliases {:dev {:extra-paths "dev-src"}
|
||||||
:test {:extra-paths ["test" "test/resources"]
|
:test {:extra-paths ["test" "test/resources"]
|
||||||
:extra-deps {expound/expound {:mvn/version "0.9.0"}
|
:extra-deps {expound/expound {:mvn/version "0.9.0"}
|
||||||
lambdaisland/kaocha {:mvn/version "1.66.1034"}
|
lambdaisland/kaocha {:mvn/version "1.71.1119"}
|
||||||
lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"}
|
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}
|
||||||
lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"}
|
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
|
||||||
org.clojure/test.check {:mvn/version "1.1.1"}
|
org.clojure/test.check {:mvn/version "1.1.1"}
|
||||||
org.testcontainers/postgresql {:mvn/version "1.17.2"}}}
|
org.testcontainers/postgresql {:mvn/version "1.17.6"}}}
|
||||||
|
|
||||||
:test-runner {:extra-paths ["test" "test/resources"]
|
:test-runner {:extra-paths ["test" "test/resources"]
|
||||||
:extra-deps {expound/expound {:mvn/version "0.8.5"}
|
:extra-deps {expound/expound {:mvn/version "0.9.0"}
|
||||||
lambdaisland/kaocha {:mvn/version "1.66.1034"}
|
lambdaisland/kaocha {:mvn/version "1.71.1119"}
|
||||||
lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"}
|
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}
|
||||||
lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"}
|
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
|
||||||
org.clojure/test.check {:mvn/version "1.1.1"}
|
org.clojure/test.check {:mvn/version "1.1.1"}
|
||||||
orchestra {:mvn/version "2021.01.01-1"}
|
orchestra {:mvn/version "2021.01.01-1"}
|
||||||
org.testcontainers/postgresql {:mvn/version "1.17.2"}}
|
org.testcontainers/postgresql {:mvn/version "1.17.6"}}
|
||||||
:main-opts ["-m" "kaocha.runner" "--reporter" "kaocha.report/documentation"]}
|
:main-opts ["-m" "kaocha.runner" "--reporter" "kaocha.report/documentation"]}
|
||||||
|
|
||||||
:cljstyle {:extra-deps {mvxcvi/cljstyle {:mvn/version "0.15.0"
|
:cljstyle {:extra-deps {mvxcvi/cljstyle {:mvn/version "0.15.0"
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@
|
||||||
:plugins [[jainsahab/lein-githooks "1.0.0"]]
|
:plugins [[jainsahab/lein-githooks "1.0.0"]]
|
||||||
|
|
||||||
:profiles {:dev {:dependencies [[expound "0.9.0"]
|
:profiles {:dev {:dependencies [[expound "0.9.0"]
|
||||||
[lambdaisland/kaocha "1.70.1086"]
|
[lambdaisland/kaocha "1.71.1119"]
|
||||||
[lambdaisland/kaocha-cloverage "1.0.75"]
|
[lambdaisland/kaocha-cloverage "1.1.89"]
|
||||||
[lambdaisland/kaocha-junit-xml "1.16.98"]
|
[lambdaisland/kaocha-junit-xml "1.17.101"]
|
||||||
[mvxcvi/cljstyle "0.15.0" :exclusions [org.clojure/clojure]]
|
[mvxcvi/cljstyle "0.15.0" :exclusions [org.clojure/clojure]]
|
||||||
[org.clojure/test.check "1.1.1"]
|
[org.clojure/test.check "1.1.1"]
|
||||||
[orchestra "2021.01.01-1"]
|
[orchestra "2021.01.01-1"]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue