mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
Merge pull request #2254 from shaunlebron/master
add .boot to clojure extensions
This commit is contained in:
@@ -515,6 +515,7 @@ Clojure:
|
|||||||
color: "#db5855"
|
color: "#db5855"
|
||||||
extensions:
|
extensions:
|
||||||
- .clj
|
- .clj
|
||||||
|
- .boot
|
||||||
- .cl2
|
- .cl2
|
||||||
- .cljc
|
- .cljc
|
||||||
- .cljs
|
- .cljs
|
||||||
|
|||||||
15
samples/Clojure/build.boot
Normal file
15
samples/Clojure/build.boot
Normal 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)))
|
||||||
Reference in New Issue
Block a user