diff options
author | mattn <mattn.jp@gmail.com> | 2014-08-01 11:45:07 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2014-08-01 11:45:07 +0900 |
commit | 5dcf055a7845dec5657aa78d55736593347c2336 (patch) | |
tree | 6dc3ba0a4906ac40695e90e806deec955a25475f | |
parent | 74039bdbde65e5b0e32dca5db118f479da5ca942 (diff) | |
download | vim-sonictemplate-5dcf055a7845dec5657aa78d55736593347c2336.tar.gz vim-sonictemplate-5dcf055a7845dec5657aa78d55736593347c2336.tar.bz2 vim-sonictemplate-5dcf055a7845dec5657aa78d55736593347c2336.zip |
Add clojure template
-rw-r--r-- | template/clojure/file-project-base.clj | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/template/clojure/file-project-base.clj b/template/clojure/file-project-base.clj new file mode 100644 index 0000000..24cabb3 --- /dev/null +++ b/template/clojure/file-project-base.clj @@ -0,0 +1,11 @@ +(defproject {{_expr_:expand('%:p:h:t')}} "0.1-SNAPSHOT" + :description "FIXME: write description" + :url "http://" + :license {:name "MIT" :url "http://opensource.org/licenses/MIT"} + :repositories {"name" "http://"} + :dependencies [[org.clojure/clojure "1.6.0"] + [clj-http "0.9.2"]] + :main ^:skip-aot {{_expr_:expand('%:p:h:t')}} + :target-path "target/%s" + :min-lein-version "2.2.0") + |