robotwar/project.clj

17 lines
659 B
Clojure
Raw Permalink Normal View History

(defproject robotwar "0.1.0-SNAPSHOT"
2013-06-26 19:59:01 +00:00
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
2015-07-22 18:39:48 +00:00
:min-lein-version "2.0.0"
2022-07-30 19:52:42 +00:00
:dependencies [[org.clojure/clojure "1.11.1"]
[clj-time "0.15.2"]
[ring/ring-json "0.5.1"]
2022-07-30 19:49:27 +00:00
[ring/ring-core "1.9.5"]
[compojure "1.7.0"]]
2022-07-30 19:52:42 +00:00
:plugins [[lein-ring "0.12.6"]]
:ring {:handler robotwar.handler/app}
2022-07-30 19:52:42 +00:00
:profiles {:dev {:dependencies [[midje "1.10.5"]
[ring-mock "0.1.5"]]}}
:main robotwar.core)