Merge pull request #2254 from shaunlebron/master

add .boot to clojure extensions
This commit is contained in:
Arfon Smith
2015-03-21 16:54:20 -05:00
2 changed files with 16 additions and 0 deletions

View File

@@ -515,6 +515,7 @@ Clojure:
color: "#db5855" color: "#db5855"
extensions: extensions:
- .clj - .clj
- .boot
- .cl2 - .cl2
- .cljc - .cljc
- .cljs - .cljs

View File

@@ -0,0 +1,15 @@
;; from: https://github.com/boot-clj/boot#configure-task-options
(set-env!
:source-paths #{"src"}
:dependencies '[[me.raynes/conch "0.8.0"]])
(task-options!
pom {:project 'my-project
:version "0.1.0"}
jar {:manifest {"Foo" "bar"}})
(deftask build
"Build my project."
[]
(comp (pom) (jar) (install)))