diff --git a/build.boot b/build.boot index 2a465a2..e47eb1e 100644 --- a/build.boot +++ b/build.boot @@ -28,3 +28,13 @@ :dependencies (concat (get-env :dev-dependencies) serve-deps) :resource-paths #{"test-extra/resources"}) (test :namespaces #{'pandeiro.boot-http-tests})) + +(deftask dev + "Dev process" + [] + (comp + (watch) + (repl :server true) + (pom) + (jar) + (install)))