project.clj 307 B

123456789
  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. :main ^:skip-aot bombnet.core
  8. :target-path "target/%s"
  9. :profiles {:uberjar {:aot :all}})