2021-01-01 10:26:31 +00:00
|
|
|
(defproject babashka/babashka
|
2019-08-09 12:51:42 +00:00
|
|
|
#=(clojure.string/trim
|
|
|
|
|
#=(slurp "resources/BABASHKA_VERSION"))
|
|
|
|
|
:description "babashka"
|
2021-01-01 10:26:31 +00:00
|
|
|
:url "https://github.com/babashka/babashka"
|
2019-08-09 12:51:42 +00:00
|
|
|
:scm {:name "git"
|
2021-01-01 10:26:31 +00:00
|
|
|
:url "https://github.com/babashka/babashka"}
|
2019-08-09 12:51:42 +00:00
|
|
|
:license {:name "Eclipse Public License 1.0"
|
|
|
|
|
:url "http://opensource.org/licenses/eclipse-1.0.php"}
|
2021-02-05 22:29:23 +00:00
|
|
|
:source-paths ["src" "sci/src" "babashka.curl/src" "fs/src" "pods/src"
|
2021-11-28 14:56:17 +00:00
|
|
|
"babashka.core/src"
|
2020-12-13 10:41:20 +00:00
|
|
|
"babashka.nrepl/src" "depstar/src" "process/src"
|
2022-04-14 16:14:31 +00:00
|
|
|
"deps.clj/src" "deps.clj/resources"
|
2023-02-01 20:53:52 +00:00
|
|
|
"impl-java/src"]
|
2020-04-11 10:24:56 +00:00
|
|
|
;; for debugging Reflector.java code:
|
|
|
|
|
;; :java-source-paths ["sci/reflector/src-java"]
|
2020-05-06 19:14:14 +00:00
|
|
|
:java-source-paths ["src-java"]
|
2019-08-17 10:42:20 +00:00
|
|
|
:resource-paths ["resources" "sci/resources"]
|
2023-02-07 21:24:11 +00:00
|
|
|
:test-selectors {:default (complement (some-fn :windows-only :flaky))
|
|
|
|
|
:windows (complement (some-fn :skip-windows :flaky))
|
|
|
|
|
:non-flaky (complement :flaky)
|
|
|
|
|
:flaky :flaky}
|
2023-03-02 14:10:58 +00:00
|
|
|
:jvm-opts ["--enable-preview"]
|
2024-09-06 12:37:00 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.12.0"]
|
2025-05-03 13:35:37 +00:00
|
|
|
[borkdude/edamame "1.4.30"]
|
2022-10-12 10:42:27 +00:00
|
|
|
[org.clojure/tools.cli "1.0.214"]
|
2025-04-16 12:07:58 +00:00
|
|
|
[cheshire "6.0.0"]
|
2024-06-12 17:15:24 +00:00
|
|
|
[nrepl/bencode "1.2.0"]
|
2025-04-26 10:16:36 +00:00
|
|
|
[borkdude/sci.impl.reflector "0.0.4"]
|
2022-04-14 16:14:31 +00:00
|
|
|
[org.babashka/sci.impl.types "0.0.2"]
|
2024-10-10 19:04:48 +00:00
|
|
|
[org.babashka/babashka.impl.java "0.1.10"]
|
2025-04-08 09:19:04 +00:00
|
|
|
[org.clojure/core.async "1.8.741"]
|
2022-01-25 09:05:51 +00:00
|
|
|
[org.clojure/test.check "1.1.1"]
|
2021-09-23 16:15:01 +00:00
|
|
|
[com.github.clj-easy/graal-build-time "0.1.0"]
|
2025-02-04 18:55:25 +00:00
|
|
|
[rewrite-clj/rewrite-clj "1.1.49"]
|
2022-07-29 10:00:58 +00:00
|
|
|
[insn/insn "0.5.2"]
|
2025-04-16 12:07:58 +00:00
|
|
|
[org.babashka/cli "0.8.65"]
|
2024-11-11 19:52:06 +00:00
|
|
|
[org.babashka/http-client "0.4.22"]
|
2025-05-02 14:34:03 +00:00
|
|
|
[org.jsoup/jsoup "1.20.1"]
|
2024-11-24 10:58:27 +00:00
|
|
|
[borkdude/graal.locking "0.0.2"]]
|
2022-01-17 14:50:33 +00:00
|
|
|
:plugins [[org.kipz/lein-meta-bom "0.1.1"]]
|
|
|
|
|
:metabom {:jar-name "metabom.jar"}
|
2020-04-29 15:50:38 +00:00
|
|
|
:profiles {:feature/xml {:source-paths ["feature-xml"]
|
2022-09-19 12:01:10 +00:00
|
|
|
:dependencies [[org.clojure/data.xml "0.2.0-alpha8"]]}
|
2020-04-29 12:50:25 +00:00
|
|
|
:feature/yaml {:source-paths ["feature-yaml"]
|
2024-11-25 11:31:12 +00:00
|
|
|
:dependencies [[clj-commons/clj-yaml "1.0.29"
|
2023-03-18 15:04:44 +00:00
|
|
|
:exclusions [org.flatland/ordered]#_#_clj-commons/clj-yaml "0.7.110"]
|
2024-05-14 08:54:45 +00:00
|
|
|
[org.flatland/ordered "1.15.12"]]}
|
2020-04-29 12:50:25 +00:00
|
|
|
:feature/jdbc {:source-paths ["feature-jdbc"]
|
2020-10-21 12:31:59 +00:00
|
|
|
:dependencies [[seancorfield/next.jdbc "1.1.610"]]}
|
2021-11-28 08:34:54 +00:00
|
|
|
:feature/sqlite [:feature/jdbc {:dependencies [[org.xerial/sqlite-jdbc "3.36.0.3"]]}]
|
2020-10-21 12:25:54 +00:00
|
|
|
:feature/postgresql [:feature/jdbc {:dependencies [[org.postgresql/postgresql "42.2.18"]]}]
|
2020-11-11 21:29:42 +00:00
|
|
|
;:feature/oracledb [:feature/jdbc {:dependencies [[com.oracle.database.jdbc/ojdbc8 "19.8.0.0"]]}]
|
|
|
|
|
:feature/oracledb [:feature/jdbc {:dependencies [[io.helidon.integrations.db/ojdbc "2.1.0"]]}] ; ojdbc10 + GraalVM config, by Oracle
|
2020-10-21 12:31:59 +00:00
|
|
|
:feature/hsqldb [:feature/jdbc {:dependencies [[org.hsqldb/hsqldb "2.5.1"]]}]
|
2020-04-30 09:39:25 +00:00
|
|
|
:feature/csv {:source-paths ["feature-csv"]
|
|
|
|
|
:dependencies [[org.clojure/data.csv "1.0.0"]]}
|
2020-04-30 10:18:46 +00:00
|
|
|
:feature/transit {:source-paths ["feature-transit"]
|
2023-04-01 10:25:46 +00:00
|
|
|
:dependencies [[com.cognitect/transit-clj "1.0.333"]]}
|
2020-05-01 18:37:31 +00:00
|
|
|
:feature/datascript {:source-paths ["feature-datascript"]
|
2022-02-22 13:17:58 +00:00
|
|
|
:dependencies [[datascript "1.3.10"]]}
|
2020-09-18 19:32:08 +00:00
|
|
|
:feature/httpkit-client {:source-paths ["feature-httpkit-client"]
|
2024-03-01 11:27:09 +00:00
|
|
|
:dependencies [[http-kit "2.8.0-RC1"]]}
|
2020-09-18 19:32:08 +00:00
|
|
|
:feature/httpkit-server {:source-paths ["feature-httpkit-server"]
|
2024-03-01 11:27:09 +00:00
|
|
|
:dependencies [[http-kit "2.8.0-RC1"]]}
|
2020-10-12 15:42:18 +00:00
|
|
|
:feature/lanterna {:source-paths ["feature-lanterna"]
|
|
|
|
|
:dependencies [[babashka/clojure-lanterna "0.9.8-SNAPSHOT"]]}
|
2021-01-23 13:02:00 +00:00
|
|
|
:feature/core-match {:source-paths ["feature-core-match"]
|
|
|
|
|
:dependencies [[org.clojure/core.match "1.0.0"]]}
|
2021-01-23 21:47:35 +00:00
|
|
|
:feature/hiccup {:source-paths ["feature-hiccup"]
|
2023-06-23 10:41:39 +00:00
|
|
|
:dependencies [[hiccup/hiccup "2.0.0-RC1"]]}
|
2021-01-24 20:07:07 +00:00
|
|
|
:feature/test-check {:source-paths ["feature-test-check"]}
|
|
|
|
|
:feature/spec-alpha {:source-paths ["feature-spec-alpha"]}
|
2021-05-06 10:53:59 +00:00
|
|
|
:feature/selmer {:source-paths ["feature-selmer"]
|
2023-07-09 19:00:07 +00:00
|
|
|
:dependencies [[selmer/selmer "1.12.59"]]}
|
2021-08-29 21:43:53 +00:00
|
|
|
:feature/logging {:source-paths ["feature-logging"]
|
2024-10-30 13:41:46 +00:00
|
|
|
:dependencies [[com.taoensso/timbre "6.6.0"]
|
2021-08-29 21:43:53 +00:00
|
|
|
[org.clojure/tools.logging "1.1.0"]]}
|
2022-03-11 11:23:31 +00:00
|
|
|
:feature/priority-map {:source-paths ["feature-priority-map"]
|
|
|
|
|
:dependencies [[org.clojure/data.priority-map "1.1.0"]]}
|
2022-04-30 09:46:36 +00:00
|
|
|
:feature/rrb-vector {:source-paths ["feature-rrb-vector"]
|
|
|
|
|
:dependencies [[org.clojure/core.rrb-vector "0.1.2"]]}
|
2020-04-28 10:03:01 +00:00
|
|
|
:test [:feature/xml
|
2020-10-12 15:42:18 +00:00
|
|
|
:feature/lanterna
|
2020-04-28 15:39:47 +00:00
|
|
|
:feature/yaml
|
2020-04-29 12:50:25 +00:00
|
|
|
:feature/postgresql
|
2020-04-28 10:03:01 +00:00
|
|
|
:feature/hsqldb
|
2020-04-30 09:39:25 +00:00
|
|
|
:feature/csv
|
2020-04-30 10:18:46 +00:00
|
|
|
:feature/transit
|
2020-05-01 18:37:31 +00:00
|
|
|
:feature/datascript
|
2020-09-18 19:32:08 +00:00
|
|
|
:feature/httpkit-client
|
|
|
|
|
:feature/httpkit-server
|
2021-01-23 13:02:00 +00:00
|
|
|
:feature/core-match
|
2021-01-23 21:47:35 +00:00
|
|
|
:feature/hiccup
|
2021-01-24 20:07:07 +00:00
|
|
|
:feature/test-check
|
|
|
|
|
:feature/spec-alpha
|
2021-05-06 10:53:59 +00:00
|
|
|
:feature/selmer
|
2021-08-29 21:43:53 +00:00
|
|
|
:feature/logging
|
2022-03-11 11:23:31 +00:00
|
|
|
:feature/priority-map
|
2022-04-30 09:46:36 +00:00
|
|
|
:feature/rrb-vector
|
2023-06-28 16:17:06 +00:00
|
|
|
{:dependencies [[borkdude/rewrite-edn "0.4.6"]
|
|
|
|
|
[com.clojure-goes-fast/clj-async-profiler "0.5.0"]
|
2022-11-10 20:04:01 +00:00
|
|
|
[com.opentable.components/otj-pg-embedded "0.13.3"]
|
|
|
|
|
[nubank/matcher-combinators "3.6.0"]]}]
|
2019-08-09 12:51:42 +00:00
|
|
|
:uberjar {:global-vars {*assert* false}
|
|
|
|
|
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
|
2021-04-04 14:22:45 +00:00
|
|
|
"-Dclojure.spec.skip-macros=true"
|
|
|
|
|
"-Dborkdude.dynaload.aot=true"]
|
2019-08-09 12:51:42 +00:00
|
|
|
:main babashka.main
|
2021-05-26 15:37:40 +00:00
|
|
|
:aot [babashka.main]}
|
2019-12-16 20:44:20 +00:00
|
|
|
:reflection {:main babashka.impl.classes/generate-reflection-file}}
|
2020-04-28 15:39:47 +00:00
|
|
|
:aliases {"bb" ["with-profile" "test" "run" "-m" "babashka.main"]}
|
2019-08-09 12:51:42 +00:00
|
|
|
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
|
|
|
|
|
:username :env/clojars_user
|
|
|
|
|
:password :env/clojars_pass
|
|
|
|
|
:sign-releases false}]])
|