2020-08-05 20:49:04 +00:00
|
|
|
(defproject clj-test-containers "0.2.0-SNAPSHOT"
|
2020-06-06 14:25:18 +00:00
|
|
|
:description "A lightweight, unofficial wrapper around the Testcontainers Java library"
|
|
|
|
|
:url "https://github.com/javahippie/clj-test-containers"
|
|
|
|
|
: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.14.3"]]
|
|
|
|
|
:plugins [[metosin/bat-test "0.4.4"]]
|
2020-08-05 05:25:59 +00:00
|
|
|
:bat-test {:report [:pretty {:type :junit
|
2020-06-06 14:25:18 +00:00
|
|
|
:output-to "target/junit.xml"}]}
|
2020-08-05 05:25:59 +00:00
|
|
|
:profiles {:dev {:dependencies [[org.testcontainers/postgresql "1.14.3"]]}}
|
2020-06-06 14:25:18 +00:00
|
|
|
:target-path "target/%s")
|
|
|
|
|
|