testcontainers-clj/project.clj

31 lines
1.4 KiB
Clojure
Raw Normal View History

2022-07-03 15:20:21 +00:00
(defproject clj-test-containers "0.7.2"
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"]
2022-07-03 15:20:21 +00:00
[org.testcontainers/testcontainers "1.17.3"]]
2020-08-07 18:22:45 +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"]
[lambdaisland/kaocha "1.66.1034"]
2022-03-17 12:10:48 +00:00
[lambdaisland/kaocha-cloverage "1.0.75"]
[lambdaisland/kaocha-junit-xml "0.0.76"]
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"]
[org.clojure/tools.namespace "1.3.0"]
2022-07-03 15:20:21 +00:00
[org.testcontainers/postgresql "1.17.3"]
2022-03-26 10:54:28 +00:00
[com.fzakaria/slf4j-timbre "0.3.21"]
[nrepl "0.9.0"]]
:source-paths ["dev-src"]}}
2020-08-07 18:22:45 +00:00
2020-06-06 14:25:18 +00:00
:target-path "target/%s")