ludus/project.clj

15 lines
510 B
Clojure
Raw Normal View History

2021-10-30 18:51:35 +00:00
(defproject ludus "0.1.0-SNAPSHOT"
:description "FIXME: write description"
2023-11-24 18:17:20 +00:00
:url "http://ludus.dev"
2021-10-30 18:51:35 +00:00
: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/"}
2022-05-24 22:52:32 +00:00
:dependencies [[org.clojure/clojure "1.11.1"]
2023-11-30 16:57:46 +00:00
[babashka/fs "0.4.19"]
2023-11-24 18:17:20 +00:00
]
:plugins [[lein-cljfmt "0.8.0"]]
2021-10-30 18:51:35 +00:00
:repl-options {:init-ns ludus.core}
2022-04-28 23:27:35 +00:00
:main ludus.core
:profiles {:uberjar {:aot :all}}
2023-01-28 22:18:09 +00:00
:jvm-opts ["--enable-preview"]
2022-04-28 23:27:35 +00:00
)