professional-services icon indicating copy to clipboard operation
professional-services copied to clipboard

[iot-nirvana] Deployments failed : appcfg is no longer supported

Open startr3k opened this issue 4 years ago • 2 comments

Running mvn -pl app-engine appengine:update to deploy the app engines encountered error :

98% Application deployment failed. Message: Deployments using appcfg are no longer supported. See https://cloud.google.com/appengine/docs/deprecations 99% Rolling back the update.

startr3k avatar Oct 04 '20 16:10 startr3k

I am also facing the same issue. @startr3k Please let me know if you found any workaround for this.

minesh1291 avatar Jul 21 '21 06:07 minesh1291

If anyone else if facing this issue, here are the steps that helped me resolve:

  1. Add this to your pom <plugin> <groupId>com.google.cloud.tools</groupId> <artifactId>appengine-maven-plugin</artifactId> <version>2.4.3</version> </plugin>

  2. Deploy using

mvn package appengine:deploy -Dapp.deploy.projectId=$PROJECT_ID -Dapp.deploy.version=1

That's it! Hope it helps someone

pavvukk avatar Jun 23 '22 17:06 pavvukk