robotwar/project.clj
Richard Harrington 7f826649dd updated lein-ring and ring-core
was necessary because leiningen 2.9.1 brings in
clojure 1.10 internally and ring needed to be
updated for that
2022-04-07 22:17:32 -04:00

16 lines
619 B
Clojure

(defproject robotwar "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"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.5.1"]
[clj-time "0.5.1"]
[ring/ring-json "0.3.1"]
[ring/ring-core "1.9.5"]]
:plugins [[lein-ring "0.12.5"]]
:ring {:handler robotwar.handler/app}
:profiles {:dev {:dependencies [[midje "1.5.1"]
[ring-mock "0.1.5"]]}}
:main robotwar.core)