Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. (defproject testing "0.1.0-SNAPSHOT"
  2. :description "FIXME: write description"
  3. :url "http://example.com/FIXME"
  4. :license {:name "Eclipse Public License"
  5. :url "http://www.eclipse.org/legal/epl-v10.html"}
  6. :dependencies [[org.clojure/clojure "1.5.1"]
  7. [org.clojure/clojurescript "0.0-1859"]]
  8. :plugins [[lein-cljsbuild "0.3.2"]]
  9. :cljsbuild {:builds
  10. [{:source-paths ["src/testing/web/cljs"]
  11. :compiler {:output-to "resources/public/js/main.js"
  12. :optimizations :whitespace
  13. :pretty-print true}}]})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement