testcontainers-clj/project.clj

29 lines
1.3 KiB
Clojure
Raw Normal View History

2021-08-18 09:07:34 +00:00
(defproject clj-test-containers "0.6.0-SNAPSHOT"
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"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.testcontainers/testcontainers "1.16.0"]]
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
:profiles {:dev {:dependencies [[expound "0.8.5"]
2020-08-07 18:22:45 +00:00
[lambdaisland/kaocha "1.0.641"]
[lambdaisland/kaocha-cloverage "1.0-45"]
[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.16.0"]
[com.fzakaria/slf4j-timbre "0.3.20"]]
:source-paths ["dev-src"]}}
2020-08-07 18:22:45 +00:00
2020-06-06 14:25:18 +00:00
:target-path "target/%s")