testcontainers-clj/project.clj

35 lines
1.8 KiB
Clojure
Raw Normal View History

2024-04-13 07:32:57 +00:00
(defproject testcontainers-clj "unspecified"
2023-08-24 20:47:48 +00:00
:description "A lightweight, official wrapper around the Testcontainers Java library"
2020-08-07 18:22:45 +00:00
2023-08-24 20:47:48 +00:00
:url "https://github.com/testcontainers/testcontainers-clj"
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"]
2024-04-13 07:32:57 +00:00
[org.testcontainers/testcontainers "1.19.7"]]
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"]
2024-04-13 07:32:57 +00:00
[lambdaisland/kaocha "1.88.1376"]
2022-11-16 21:55:59 +00:00
[lambdaisland/kaocha-cloverage "1.1.89"]
[lambdaisland/kaocha-junit-xml "1.17.101"]
2024-04-13 07:32:57 +00:00
[mvxcvi/cljstyle "0.16.630" :exclusions [org.clojure/clojure]]
2022-03-17 12:10:48 +00:00
[org.clojure/test.check "1.1.1"]
2022-03-18 10:48:59 +00:00
[orchestra "2021.01.01-1"]
2024-04-13 07:32:57 +00:00
[org.clojure/tools.namespace "1.5.0"]
[org.testcontainers/postgresql "1.19.7"]
[com.fzakaria/slf4j-timbre "0.4.1"]
[nrepl "1.0.0"]]
2023-08-24 20:47:48 +00:00
:source-paths ["dev-src"]}
:release {:deploy-repositories [["maven" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
:username :env/ossrh_username
:password :env/ossrh_password
:sign-releases false}]]}}
2020-08-07 18:22:45 +00:00
2020-06-06 14:25:18 +00:00
:target-path "target/%s")