From 4f2ed82d5bba90f0da0790da3f516e98846e6f8c Mon Sep 17 00:00:00 2001 From: Joel Kaasinen Date: Mon, 16 Sep 2024 16:05:46 +0300 Subject: [PATCH] fix: remove broken virgil profile lein-virgil is unsupported, should use virgil directly these days we're not under active development so let's just drop the whole virgil thing for now --- project.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 4d192db..02604ec 100644 --- a/project.clj +++ b/project.clj @@ -34,7 +34,6 @@ [com.clojure-goes-fast/clj-async-profiler "1.2.2"] [criterium "0.4.6"]] :global-vars {*warn-on-reflection* true}} - :virgil {:plugins [[lein-virgil "0.1.9"]]} :1.8 {:dependencies [[org.clojure/clojure "1.11.3"]]} :1.9 {:dependencies [[org.clojure/clojure "1.11.3"]]} :jmh {:jvm-opts ["-Dclojure.compiler.direct-linking=true"]} @@ -43,4 +42,4 @@ "-Dclojure.compiler.direct-linking=true"]}} :aliases {"all" ["with-profile" "default:dev:default:dev,1.8:dev,1.9"] "perf" ["with-profile" "default,dev,perf"] - "repl" ["with-profile" "default,dev,virgil" "repl"]}) + "repl" ["with-profile" "default,dev" "repl"]})