From bbde1d7f832c431efdf91f47adab905e1f525aa8 Mon Sep 17 00:00:00 2001 From: erik Date: Thu, 15 Jun 2023 14:55:04 +0200 Subject: [PATCH] Add deps from souk --- project.clj | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/project.clj b/project.clj index d24c262..eb8beeb 100644 --- a/project.clj +++ b/project.clj @@ -4,7 +4,14 @@ :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"] - [hato/hato {:mvn/version "0.9.0"}]] + ;; Incoming HTTP + [ring/ring-core "1.9.6"] + [ring/ring-jetty-adapter "1.9.6"] + [ring/ring-mock "0.4.0"] + [metosin/muuntaja "0.6.8"] + [metosin/reitit "0.5.18"] + ;; Outgoing HTTP + [hato/hato "0.9.0"]] :main ^:skip-aot activity-pub-poc.core :target-path "target/%s" :profiles {:uberjar {:aot :all}})