From 8d977296d7d7861638ec6e2c4b909816b3955c18 Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Sat, 10 Oct 2015 12:32:32 -0400 Subject: [PATCH] make alias for deploying --- project.clj | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/project.clj b/project.clj index 57cc8f9..658a5ae 100644 --- a/project.clj +++ b/project.clj @@ -7,6 +7,8 @@ :jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions :source-paths ["src"] :test-paths ["test", "target/test-classes"] + :jar-exclusions [#"\.cljx"] + :auto-clean false :profiles {:dev {:dependencies [[org.clojure/test.check "0.7.0"]] :plugins @@ -23,7 +25,9 @@ {:source-paths ["test"] :output-path "target/test-classes" :rules :cljs}]} - :aliases {"cleantest" ["do" "clean," - "cljx" "once," - "test"]}} - }) + } + } + :aliases {"cleantest" ["do" "clean," + "cljx" "once," + "test"] + "deploy" ["do" "clean," "cljx" "once," "deploy" "clojars"]})