fix uberjar

This commit is contained in:
Clyne 2023-07-15 08:46:32 -04:00
parent 9ad3988802
commit b30265fba6
Signed by: clyne
GPG Key ID: 1B74EE6C49C96795
2 changed files with 3 additions and 1 deletions

View File

@ -6,4 +6,5 @@
:dependencies [[org.clojure/clojure "1.11.1"]
[clj-http "3.12.3"]
[org.clojure/data.json "2.4.0"]]
:main ^:skip-aot lemmold.core)
:main ^:skip-aot lemmold.core
:profiles {:uberjar {:aot :all}})

View File

@ -1,4 +1,5 @@
(ns lemmold.core
(:gen-class)
(:require [clj-http.client :as client])
(:require [clojure.data.json :as json]))