make alias for deploying
This commit is contained in:
parent
dd5620cfec
commit
8d977296d7
1 changed files with 8 additions and 4 deletions
12
project.clj
12
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
|
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions
|
||||||
:source-paths ["src"]
|
:source-paths ["src"]
|
||||||
:test-paths ["test", "target/test-classes"]
|
:test-paths ["test", "target/test-classes"]
|
||||||
|
:jar-exclusions [#"\.cljx"]
|
||||||
|
:auto-clean false
|
||||||
:profiles {:dev {:dependencies
|
:profiles {:dev {:dependencies
|
||||||
[[org.clojure/test.check "0.7.0"]]
|
[[org.clojure/test.check "0.7.0"]]
|
||||||
:plugins
|
:plugins
|
||||||
|
|
@ -23,7 +25,9 @@
|
||||||
{:source-paths ["test"]
|
{:source-paths ["test"]
|
||||||
:output-path "target/test-classes"
|
:output-path "target/test-classes"
|
||||||
:rules :cljs}]}
|
:rules :cljs}]}
|
||||||
:aliases {"cleantest" ["do" "clean,"
|
}
|
||||||
"cljx" "once,"
|
}
|
||||||
"test"]}}
|
:aliases {"cleantest" ["do" "clean,"
|
||||||
})
|
"cljx" "once,"
|
||||||
|
"test"]
|
||||||
|
"deploy" ["do" "clean," "cljx" "once," "deploy" "clojars"]})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue