diff --git a/generate-executable.sh b/generate-executable.sh index 767a893..09a5295 100755 --- a/generate-executable.sh +++ b/generate-executable.sh @@ -17,7 +17,7 @@ echo "Build executable from JAR via GraalVM:" gu install native-image && \ native-image \ --allow-incomplete-classpath \ - --force-fallback \ + --no-fallback \ --initialize-at-build-time \ --no-server \ --report-unsupported-elements-at-runtime \ diff --git a/project.clj b/project.clj index 9eff0c4..f989079 100644 --- a/project.clj +++ b/project.clj @@ -6,7 +6,7 @@ :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.10.0"], [org.clojure/data.json "0.2.6"], - [clj-http "3.9.1"], + [clj-http-lite "0.3.0"], [slingshot "0.12.2"], [clj-time "0.15.1"], [org.clojure/core.async "0.4.490"]] diff --git a/src/hubstats/github.clj b/src/hubstats/github.clj index 0cb2a38..eca5560 100644 --- a/src/hubstats/github.clj +++ b/src/hubstats/github.clj @@ -1,10 +1,10 @@ (ns hubstats.github - (:require - [clojure.data.json :as json] - [clj-time.core :as time] - [clj-time.format :as time-format] - [clj-http.client :as http-client] - [slingshot.slingshot :refer [try+]])) + (:require + [clojure.data.json :as json] + [clj-time.core :as time] + [clj-time.format :as time-format] + [clj-http.lite.client :as http-client] + [slingshot.slingshot :refer [try+]])) (def date-format (time-format/formatter "yyyy-MM-dd'T'HH:mm:ssZ"))