2022-11-16 14:10:17 +00:00
|
|
|
(defproject clj-test-containers "0.7.4"
|
2020-06-06 14:25:18 +00:00
|
|
|
:description "A lightweight, unofficial wrapper around the Testcontainers Java library"
|
2020-08-07 18:22:45 +00:00
|
|
|
|
2020-06-06 14:25:18 +00:00
|
|
|
:url "https://github.com/javahippie/clj-test-containers"
|
2020-08-07 18:22:45 +00:00
|
|
|
|
2020-06-06 14:25:18 +00:00
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
|
|
|
|
|
2022-03-17 12:10:48 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.10.3"]
|
2023-08-24 00:10:26 +00:00
|
|
|
[org.testcontainers/testcontainers "1.19.0"]]
|
2020-08-07 18:22:45 +00:00
|
|
|
|
2020-08-09 19:38:20 +00:00
|
|
|
:aliases {"test" ["run" "-m" "kaocha.runner"]
|
|
|
|
|
"cljstyle" ["run" "-m" "cljstyle.main"]}
|
|
|
|
|
|
|
|
|
|
:plugins [[jainsahab/lein-githooks "1.0.0"]]
|
2020-08-07 18:22:45 +00:00
|
|
|
|
2022-03-17 12:10:48 +00:00
|
|
|
:profiles {:dev {:dependencies [[expound "0.9.0"]
|
2023-08-24 00:10:26 +00:00
|
|
|
[lambdaisland/kaocha "1.85.1342"]
|
2022-11-16 21:55:59 +00:00
|
|
|
[lambdaisland/kaocha-cloverage "1.1.89"]
|
|
|
|
|
[lambdaisland/kaocha-junit-xml "1.17.101"]
|
2022-03-17 12:10:48 +00:00
|
|
|
[mvxcvi/cljstyle "0.15.0" :exclusions [org.clojure/clojure]]
|
|
|
|
|
[org.clojure/test.check "1.1.1"]
|
2022-03-18 10:48:59 +00:00
|
|
|
[orchestra "2021.01.01-1"]
|
2022-05-25 07:00:21 +00:00
|
|
|
[org.clojure/tools.namespace "1.3.0"]
|
2023-08-24 00:10:26 +00:00
|
|
|
[org.testcontainers/postgresql "1.19.0"]
|
2022-03-26 10:54:28 +00:00
|
|
|
[com.fzakaria/slf4j-timbre "0.3.21"]
|
2022-09-30 10:23:59 +00:00
|
|
|
[nrepl "1.0.0"]]
|
2020-08-10 06:15:00 +00:00
|
|
|
:source-paths ["dev-src"]}}
|
2020-08-07 18:22:45 +00:00
|
|
|
|
2020-06-06 14:25:18 +00:00
|
|
|
:target-path "target/%s")
|