aboutsummaryrefslogtreecommitdiffstats
path: root/project.clj
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-05-20 12:33:21 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-05-20 12:33:21 -0400
commitcacf5366512f83295d2e2809e4a6a09378f63f42 (patch)
treeb6c4efdd488aed1603a4f97da9820f57cd58a315 /project.clj
initial commit
Diffstat (limited to 'project.clj')
-rw-r--r--project.clj11
1 files changed, 11 insertions, 0 deletions
diff --git a/project.clj b/project.clj
new file mode 100644
index 0000000..8c544a7
--- /dev/null
+++ b/project.clj
@@ -0,0 +1,11 @@
+(defproject bitgloo-web "0.2"
+ :description "bitgloo website framework"
+ :url "https://bitgloo.com"
+ :license {:name "GPL-3.0-or-later" :url "https://www.gnu.org/licenses/gpl-3.0.en.html"}
+ :dependencies [[org.clojure/clojure "1.10.3"]
+ [ring/ring-core "1.9.6"]
+ [ring/ring-jetty-adapter "1.9.6"]
+ [hiccup "1.0.5"]
+ [markdown-clj "1.11.4"]]
+ :main ^:skip-aot bitgloo-web.core
+ :profiles {:uberjar {:aot :all}})