Skip to content

Commit

Permalink
updated examples
Browse files Browse the repository at this point in the history
  • Loading branch information
just-sultanov committed Jan 17, 2020
1 parent 18d2a34 commit 7b41566
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,18 @@ Add the following dependency in your project:
(:require [clj-deps.core :as deps]))
;; load library from git via https
(deps/add-lib 'clj-helpers {:git/url "https://github.com/just-sultanov/clj-helpers.git"
:sha "db6263b750a66c3f3df99e14a53ba9e416f34fa3"})
(deps/add-lib 'clj-fsm {:git/url "https://github.com/just-sultanov/clj-fsm.git"
:sha "396f95a1f28a1fae7672bdf4793e9168abaf2990"})
;; => true
;; load library from git via ssh
(deps/add-lib 'clj-helpers {:git/url "git@github.com:just-sultanov/clj-helpers.git"
:sha "db6263b750a66c3f3df99e14a53ba9e416f34fa3"})
(deps/add-lib 'clj-fsm {:git/url "git@github.com:just-sultanov/clj-fsm.git"
:sha "396f95a1f28a1fae7672bdf4793e9168abaf2990"})
;; => true
;; load library from maven
(deps/add-lib 'clj-helpers {:mvn/version "0.2.0"})
;; => true
(deps/add-lib 'clj-fsm {:mvn/version "0.2.2"})
;; => true
Expand Down

0 comments on commit 7b41566

Please sign in to comment.