project.clj 1.0 KB

123456789101112131415161718192021222324
  1. (defproject bombnet "0.1.0-SNAPSHOT"
  2. :description "Bomberman-like game"
  3. :url ""
  4. :license {:name "WTFPL"
  5. :url "http://www.wtfpl.net/txt/copying/"}
  6. :dependencies [[org.clojure/clojure "1.7.0"]
  7. [org.clojure/clojurescript "1.7.170"]
  8. [org.clojure/core.async "0.2.374"]
  9. [org.clojure/data.json "0.2.6"]
  10. [com.stuartsierra/component "0.3.1"]
  11. [compojure "1.4.0"]
  12. [http-kit "2.1.19"]]
  13. :plugins [[lein-figwheel "0.5.0-4"]]
  14. :source-paths ["src/"]
  15. :cljsbuild {:builds [{:id "dev"
  16. :figwheel true
  17. :source-paths ["src/bombnet.web"]
  18. :compiler {:main "bombnet.web.core"
  19. :asset-path "js/out"
  20. :output-to "resources/public/js/main.js"
  21. :output-dir "resources/public/js/out"}}]}
  22. :main ^:skip-aot bombnet.core
  23. :target-path "target/%s"
  24. :profiles {:uberjar {:aot :all}})