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"])