Skip to content

Commit aaabb68

Browse files
authored
docs: update README.md with deps.edn aliases (#264)
- update steps to install and deploy to clojars with Clojure CLI commands instead of Leiningen (as before)
1 parent fbe42a1 commit aaabb68

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Diff for: README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -217,16 +217,21 @@ we have an [introductory document](topics/new-to-clojure.md).
217217
To install jar to local .m2 :
218218

219219
```bash
220-
$ lein install
220+
$ clj -X:depstar
221221
```
222222

223-
### Deploy to clojars
223+
After building and process `pom.xml` file you can run:
224224

225225
```bash
226-
$ lein deploy clojars
226+
$ clj -X:install
227227
```
228-
This command will sign jar before deploy, using your gpg key. (see dev/src/build.clj for signing options)
229228

229+
### Deploy to clojars
230+
231+
```bash
232+
$ clj -X:deploy
233+
```
234+
> This command will sign jar before deploy, using your gpg key.
230235
231236

232237
## License

0 commit comments

Comments
 (0)