Google Deploy for App Engine Disabled in Eclipse

I have been using Google Plugin for Eclipse to deploy my project to App Engine, and it has been working fine for over a year now. But a couple of days ago, he stopped working, and I can not find the reason. The project is still an App Engine project, but the Deploy Application button is disabled.

I have already reinstalled the entire Google plugin in Eclipse. I also added another GAE project, but then the button is still disabled. I managed to turn on the button once for loading, but I do not know what caused the inclusion.

enter image description here

Has anyone seen this before and any clue how to fix this?

EDIT: The button is on when I removed and re-added the App Engine SDK from the project build path. After deployment, the button is again disabled.

+5
source share
5 answers

This is a known bug in the latest version 3.9.1. The correction will be clicked on Monday, 5/2.

+2
source

The same thing happens for my eclipse. The workaround I'm using is File -> Close Project, then double-click to open the project, voila.

+2
source

Deploy to App Engine is disabled only when another project is selected. To enable it:

  • Deselect all projects (Ctrl + Click on the selected project - or restart Eclipse).
  • Choose your project.

Then it should be turned on (well, that was for me).

EDIT: Google has released a new version of the plugin, and now the button works fine.

0
source

For those who do not want to wait (I did not), use appcfg. If you want to use external tools, you will find the executable file in (SDK install - check the configured SDKs) / bin / appcfg. (Sh | cmd)

Set the working directory to the project folder, the command "update war", where "war" is the location of the military directory relative to the project folder.

I installed JAVA_HOME under the environment tab in the Java SDK and PATH in the Java SDK / bin directory and "replaced the native environment with the specified environment" on Windows, it worked fine without any environment settings on Linux.

0
source

Starting Eclipse Neon 4.6.3 without problems. To enable it:

  • Install the Google Cloud SDK and cloud tools for Eclipse https://cloud.google.com/eclipse/docs/quickstart
  • Installing components using the Google Cloud command line
    • gcloud components install app-engine-java
  • Converting an eclipse project to a Google engine project
    • Right click project
    • Click Configure
    • Click Convert to standard app engine project
  • Make sure you click on the project and ... voila!
0
source

All Articles