From 6ad72c0e3465bfdb825c82bfcb2c1b2f21cc1738 Mon Sep 17 00:00:00 2001 From: Christian Packard <6462409+cpackard@users.noreply.github.com> Date: Fri, 2 Jun 2023 11:03:30 -0400 Subject: [PATCH] update docs and deps for new datomic-pro release --- README.md | 9 +++++++++ project.clj | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3470e94..c0b38a6 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,15 @@ Included in this project are: Follow the directs in https://docs.datomic.com/pro/releases.html to download Datomic Pro and unzip it somewhere convenient. +After unzipping, install the `datomic` dependency to your local maven repository: + +```shell +cd datomic-pro-$VERSION +bin/maven-install +``` + +The above requires the `mvn` binary installed locally (available from Homebrew via `brew install mvn`). + Start the transactor: cd datomic-pro-$VERSION diff --git a/project.clj b/project.clj index 510dc4d..d2ac498 100644 --- a/project.clj +++ b/project.clj @@ -6,6 +6,6 @@ :repositories {"my.datomic.com" {:url "https://my.datomic.com/repo" :creds :gpg}} :dependencies [[org.clojure/clojure "1.10.3"] - [com.datomic/datomic-pro "1.0.6610"]] + [com.datomic/peer "1.0.6733"]] :source-paths ["src/clj" "examples/clj"] :jvm-opts ^:replace ["-Xmx2g" "-server"])