Skip to content
Snippets Groups Projects
Commit 0c3cb5bc authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #2209 from metabase/h2-task

Add 'lein h2' to easily get a H2 console
parents 7bc3cd18 d93036a4
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,8 @@
:aliases {"bikeshed" ["bikeshed" "--max-line-length" "240"]
"check-reflection-warnings" ["with-profile" "+reflection-warnings" "check"]
"test" ["with-profile" "+expectations" "expectations"]
"generate-sample-dataset" ["with-profile" "+generate-sample-dataset" "run"]}
"generate-sample-dataset" ["with-profile" "+generate-sample-dataset" "run"]
"h2" ["with-profile" "+h2-shell" "run"]}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/core.async "0.2.374"]
[org.clojure/core.match "0.3.0-alpha4"] ; optimized pattern matching library for Clojure
......@@ -136,4 +137,5 @@
:jar-name "reset-password.jar"
;; Exclude everything except for reset-password specific code in the created jar
:jar-exclusions [#"^(?!metabase/reset_password).*$"]
:target-path "reset-password-artifacts/%s"}}) ; different than ./target because otherwise lein uberjar will delete our artifacts and vice versa
:target-path "reset-password-artifacts/%s"} ; different than ./target because otherwise lein uberjar will delete our artifacts and vice versa
:h2-shell {:main org.h2.tools.Shell}})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment