From 4e5f76c865550d13a876eaff865ee770be235c3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lanjoni?= Date: Thu, 5 Sep 2024 13:28:08 -0300 Subject: [PATCH] docs: update README.md with deps.edn aliases - update steps to install and deploy to clojars with Clojure CLI commands instead of Leiningen (as before) --- README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 659a133..53bb94b 100644 --- a/README.md +++ b/README.md @@ -217,16 +217,21 @@ we have an [introductory document](topics/new-to-clojure.md). To install jar to local .m2 : ```bash -$ lein install +$ clj -X:depstar ``` -### Deploy to clojars +After building and process `pom.xml` file you can run: ```bash -$ lein deploy clojars +$ clj -X:install ``` -This command will sign jar before deploy, using your gpg key. (see dev/src/build.clj for signing options) +### Deploy to clojars + +```bash +$ clj -X:deploy +``` +> This command will sign jar before deploy, using your gpg key. ## License