From b88e3646bb726ed16f2799986f4603719784bee3 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Sun, 11 Dec 2022 11:58:12 +0100 Subject: [PATCH] book --- src/bb-edn.adoc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bb-edn.adoc b/src/bb-edn.adoc index e773156..33f8da9 100644 --- a/src/bb-edn.adoc +++ b/src/bb-edn.adoc @@ -20,9 +20,12 @@ If we have a project that has a `deps.edn` and would like to reuse those deps in [source, clojure] ---- -{:deps {local/deps {:local/root "."}}} +{:deps {your-org/your-project {:local/root "."}}} ---- +NOTE: Use a unique name to refer to your projec's `deps.edn`, the same name that +you would otherwise use when referring to your project as a dependency. + If we have a main function in a file called `bb/my_project/main.clj` like: ----