cloudstate
cloudstate copied to clipboard
Docs: Java pom.xml has issues
The pom.xml in the docs (https://cloudstate.io/docs/user/lang/java/gettingstarted.html) has some issues. I was getting errors on $ mvn docker:build
.
The following fixed it:
- In the "io.fabric8" plugin section, I put the "name" part below the
image
section and not below thebuild
section. - The name of the docker image is not
adoptopenjdk/11-jre-hotspot
with taglatest
butadoptopenjdk
with the tag11-jre-hotspot
.
I can make a PR to fix this.