I have 2 java springboot services to be deployed to google app-engine (standard env). They both work fine and I was able to deploy them both with mvn appengine:deploy
.
However the standard environment automatically assigns a name and version to each service and causes them to overwrite one another.
I have already looked into this answer which didn't work in the standard environment.
How do I deploy multiple services with different names so they don't overwrite one another?
Thanks in advance!