This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-04-16
Channels
- # babashka (17)
- # calva (35)
- # clerk (31)
- # cljs-dev (3)
- # clojars (1)
- # clojure (16)
- # clojure-europe (4)
- # clojurescript (38)
- # clojutre (2)
- # cursive (8)
- # datomic (16)
- # exercism (5)
- # fulcro (5)
- # gratitude (3)
- # hyperfiddle (55)
- # joyride (1)
- # lsp (40)
- # off-topic (6)
- # portal (64)
- # practicalli (1)
- # reitit (3)
- # releases (1)
- # shadow-cljs (38)
- # sql (1)
- # tools-deps (8)
- # xtdb (9)
I have been setting up a LocalDev for the datomic. I encounter this reply whenever I run the installation script: user@user-X540UPR:~/Downloads/cognitect-dev-tools-0.9.72$ ./install Installing: com.cognitect/rebl {:mvn/version "0.9.245"} ./install: line 5: mvn: command not found Installing: com.datomic/dev-local {:mvn/version "1.0.243"} ./install: line 7: mvn: command not found
Looks like it expects that maven is installed
I already made a directory for dev-local-storage and appended the path in the dev-local.edn
I also edited the settings.xml in .m2 folder this entry:
<settings>
<servers>
<server>
<id>cognitect-dev-tools</id>
<username>[email protected]</username>
<password>*******</password>
</server>
</servers>
</settings>
How do I go about installing the maven?
Either using your package manager or manually. Are you using a linux distro? Ubuntu?
Yes, I am running on Ubuntu.
I would assume ”apt install maven” would do the trick
$ sudo apt update $ sudo apt install maven $ mvn -version
Got it, I have successfully run the installation script of datomic!
Thank you very much.👍❤️
No problem :)
To manage the JDK and Maven installations I prefer https://sdkman.io/, it's pretty easy to use.
Can anyone point me to the direction where I can address this issue?