spec enabled

This commit is contained in:
Michiel Borkent 2022-04-01 18:31:23 +02:00
parent 59d7831fc8
commit 1ce7fb13c4

View file

@ -17,7 +17,7 @@
(def selmer? (not= "false" (System/getenv "BABASHKA_FEATURE_SELMER"))) (def selmer? (not= "false" (System/getenv "BABASHKA_FEATURE_SELMER")))
(def logging? (not= "false" (System/getenv "BABASHKA_FEATURE_LOGGING"))) (def logging? (not= "false" (System/getenv "BABASHKA_FEATURE_LOGGING")))
(def priority-map? (not= "false" (System/getenv "BABASHKA_FEATURE_PRIORITY_MAP"))) (def priority-map? (not= "false" (System/getenv "BABASHKA_FEATURE_PRIORITY_MAP")))
(def spec-alpha? (not= "false" (System/getenv "BABASHKA_FEATURE_SPEC_ALPHA")))
;; excluded by default ;; excluded by default
(def jdbc? (= "true" (System/getenv "BABASHKA_FEATURE_JDBC"))) (def jdbc? (= "true" (System/getenv "BABASHKA_FEATURE_JDBC")))
(def sqlite? (= "true" (System/getenv "BABASHKA_FEATURE_SQLITE"))) (def sqlite? (= "true" (System/getenv "BABASHKA_FEATURE_SQLITE")))
@ -26,7 +26,6 @@
(def hsqldb? (= "true" (System/getenv "BABASHKA_FEATURE_HSQLDB"))) (def hsqldb? (= "true" (System/getenv "BABASHKA_FEATURE_HSQLDB")))
(def datascript? (= "true" (System/getenv "BABASHKA_FEATURE_DATASCRIPT"))) (def datascript? (= "true" (System/getenv "BABASHKA_FEATURE_DATASCRIPT")))
(def lanterna? (= "true" (System/getenv "BABASHKA_FEATURE_LANTERNA"))) (def lanterna? (= "true" (System/getenv "BABASHKA_FEATURE_LANTERNA")))
(def spec-alpha? (= "true" (System/getenv "BABASHKA_FEATURE_SPEC_ALPHA")))
(when xml? (when xml?
(require '[babashka.impl.xml])) (require '[babashka.impl.xml]))