Welcome! Please see the About page for a little more info on how this works.

0 votes
in Cloud by
edited by

I am just exploring this for my company, and I am trying to set up free version to follow the tutorial. I downloaded datomic-1.0.6610, am on Windows with leiningen. This is in my project.clj file:

  :dependencies [[org.clojure/clojure "1.11.1"]
                 [com.datomic/datomic-free "1.0.6610"]]

When I run lein repl, I get this:

C:\Users\irinzn\personal\datomic-try>lein repl
Retrieving org/clojure/clojure/1.11.1/clojure-1.11.1.pom from central
Retrieving org/clojure/spec.alpha/0.3.218/spec.alpha-0.3.218.pom from central
Retrieving org/clojure/pom.contrib/1.1.0/pom.contrib-1.1.0.pom from central
Retrieving org/clojure/core.specs.alpha/0.2.62/core.specs.alpha-0.2.62.pom from central
Retrieving nrepl/nrepl/1.0.0/nrepl-1.0.0.pom from clojars
Retrieving org/nrepl/incomplete/0.1.0/incomplete-0.1.0.pom from clojars
Retrieving org/clojure/spec.alpha/0.3.218/spec.alpha-0.3.218.jar from central
Retrieving org/clojure/core.specs.alpha/0.2.62/core.specs.alpha-0.2.62.jar from central
Retrieving org/clojure/clojure/1.11.1/clojure-1.11.1.jar from central
Retrieving org/nrepl/incomplete/0.1.0/incomplete-0.1.0.jar from clojars
Retrieving nrepl/nrepl/1.0.0/nrepl-1.0.0.jar from clojars
Could not find artifact com.datomic:datomic-free:jar:1.0.6610 in central (https://repo1.maven.org/maven2/)
Could not find artifact com.datomic:datomic-free:jar:1.0.6610 in clojars (https://repo.clojars.org/)
This could be due to a typo in :dependencies, file system permissions, or network issues.
If you are behind a proxy, try setting the 'http_proxy' environment variable.
Could not resolve dependencies

And then it hangs. I am following the instructions here: https://docs.datomic.com/on-prem/peer/integrating-peer-lib.html . Can someone tell me what I am doing wrong?

Also, peeking at those repos, this version may not be there, at least in free version?

https://repo.clojars.org/datomic-free/datomic-free/
https://repo1.maven.org/maven2/com/datomic/

Also, is this possibly the answer? https://ask.datomic.com/index.php/453/datomic-free-releases-arent-uploaded-public-clojars-anymore

1 Answer

0 votes
by

Hi Matt,

You're correct in pointing to https://ask.datomic.com/index.php/453/datomic-free-releases-arent-uploaded-public-clojars-anymore.

Datomic 0.9.5697, datomic-free is the last version of Datomic-free uploaded. Dev-local is the successor to datomic-free and is documented at: https://docs.datomic.com/cloud/dev-local.html and you can get the latest dev-local here: https://cognitect.com/dev-tools.

The problems raised in that thread for use cases of dev-local are all captured and being worked on for future releases of Dev local.

Thanks,
Jaret

...