clj project template

This commit is contained in:
Dan Motzenbecker 2015-08-22 01:07:37 -04:00
parent 8ea21c84e4
commit be1faccc56
1 changed files with 14 additions and 0 deletions

14
resources/project.clj Normal file
View File

@ -0,0 +1,14 @@
(defproject $PROJECT_NAME_HYPHENATED$ "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "0.0-3308"]
[org.omcljs/om "0.8.8"]
[org.omcljs/ambly "0.6.0"]]
:plugins [[lein-cljsbuild "1.0.6"]]
:cljsbuild {:builds {:dev {:source-paths ["src"]
:compiler {:output-to "target/out/main.js"
:output-dir "target/out"
:optimizations :none}}}})