18 lines
795 B
Clojure
18 lines
795 B
Clojure
(defproject il "0.1.0-SNAPSHOT"
|
|
:description "Iron Legacy, a browser based sci-fi MMORPG"
|
|
:url "http://example.com/FIXME"
|
|
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
|
|
:url "https://www.eclipse.org/legal/epl-2.0/"}
|
|
:dependencies [[org.clojure/clojure "1.11.1"]
|
|
[org.ring-clojure/ring-websocket-async "0.2.0"]
|
|
[org.clojure/data.json "2.5.2"]
|
|
[compojure "1.7.2"]
|
|
[hiccup "2.0.0"]
|
|
[org.slf4j/slf4j-simple "2.0.16"]
|
|
[org.clojure/data.json "2.5.2"]
|
|
[ring/ring-core "1.15.4"]
|
|
[ring/ring-jetty-adapter "1.15.4"]
|
|
[org.clojure/core.async "1.9.865"]]
|
|
:main il.core
|
|
:repl-options {:init-ns il.core})
|