Questions tagged [google-eclipse-plugin]

Google Plugin for Eclipse (GPE) is a set of software development tools that enables Java developers to quickly design, build, optimize, and deploy cloud-based applications.

143 questions
0
votes
1 answer

Eclipse Google Plugin - WTP Server - Not creating lib folder

since a few days the Eclipse plugins started to show this error. The project is an App Engine project based on Maven, and the dev-server is launched using the WTP integration provided by the Google Eclipse Plugin. AVVERTENZA: failed …
0
votes
1 answer

gwt 2.0.0 in Eclipse Luna & gwt plugin version 3.8.0

All I try to setup fresh eclipse Luna 4.4.2 with gwt plugin version 3.8.0v201410302155-rel-r44. My application uses gwt 2.0.0 version. When I add gwt 2.0.0 SDK to the plugin it says: PATH:\gwt-codeserver.jar is missing What is the step to add gwt…
kingoleg
  • 1,305
  • 15
  • 24
0
votes
1 answer

Missing "Google" in project properties

In my Eclipse App Engine project I have to set the "Use Google App Engine from time to time as it gets lost. But now suddenly, the "Google" menu in the project properties disappeared; instead I get a "Google App Engine" menu (not a submenu), where I…
Alex R
  • 808
  • 2
  • 10
  • 26
0
votes
1 answer

Proguard complaining about duplicate definitions for com.google.api.client.extensions.jdo

I am getting an error from Proguard that I have never gotten before. And I hope someone here can help me because I am at a loss. For some background: I just updated my Google Eclipse Plugin and DataNucleus because I am using App-Engine Connected…
Katedral Pillon
  • 14,534
  • 25
  • 99
  • 199
0
votes
2 answers

Error generating the API metadata for Cloud Endpoints classes in Eclipse

I have two different cloud endpoint methods with two different name signatures @ApiMethod(name = "getWhiteCats", httpMethod = HttpMethod.POST) public CollectionResponse getWhiteCats(CatCall request) And @ApiMethod(name = "getGrayCats",…
0
votes
1 answer

Cannot Install Google plugin for Eclipse

I am not able to install the Google plugin for Eclipse Luna 4.4.1 on Mac. I followed all the steps, and got no errors. Eclipse restarted after installing the plugin, but after that I don't see the Google logo on my toolbar and even in File > New, I…
0
votes
4 answers

The maven project generated by gwt-maven-plugin can't be imported into eclipse via import existing maven project

I firstly generated a gwt maven project by executing -- mvn archetype:generate -DarchetypeGroupId=org.codehaus.mojo -DarchetypeArtifactId=gwt-maven-plugin -DarchetypeVersion=2.7.0 After that, the pom.xml is as follows:
Bo Ye
  • 371
  • 2
  • 6
  • 17
0
votes
1 answer

Unable to read repository from Eclipse 3.6

Running Eclipse 3.6 and trying to get version 3.2.4 of the GWT plugin. I add the source and it results in the following: Unable to read repository at…
0
votes
1 answer

App-Engine Connected Android Project: Does Google-Eclipse Plugin generate Client Endpoints for iOS and JavaScript in addition to the android api

Old I need to work on the iOS version of my app. The App-Engine and Android portions are completed using the Google Eclipse Plugin (GPE). In the Official Google Documentations I am told the easiest way is to use maven. Does anyone know how I might…
0
votes
1 answer

google app engine tools for android Eclipse current instructions not working

I followed the latest instructions on http://developer.android.com/sdk/installing/index.html?pkg=adt to install ADT and additional packages Then I followed instructions on https://developers.google.com/eclipse/docs/install-eclipse-4.2 to install…
0
votes
1 answer

How to specify com.google.gwt.dev.DevMode as the main class automatically when debug gwt code

when I debug my gwt application code using google eclipse plugin via selected gwt module->debug as->web application, the generated debug configuration always use com.google.gwt.dev.GWTShell as the main class. This makes my debug failed as GWTShell…
danny
  • 3,046
  • 3
  • 23
  • 28
0
votes
1 answer

JPA Datanucleus showing old data that is no longer in datastore

I have two entities: Account, Home. The relationship is such @Entity public class Account implements java.io.Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) …
0
votes
2 answers

Cannot Generate Cloud Endpoint Client Library - "Not an App Engine project"

When I attempt to generate an endpoint client library in Eclipse (GPE 3.5.1, GAE SDK 1.9.4) I get this error: "Not an App Engine project". The project is an App Engine project (and is deployed). The project is configured as an EAR project with…
0
votes
2 answers

How to specify additional source folders for GWT project with Google Eclipse plugin?

My GWT project has all code in the src folder. But now I have some additional generated code which goes into a new generated folder. I have configured my Eclipse to use this additional folder, which works fine. But when I start the GWT server, the…
Witek
  • 6,160
  • 7
  • 43
  • 63
0
votes
1 answer

GWT GAE app engine modules using appengine-skeleton-archetype

I tried to create a new maven project using com.google.appengine.archetypes:appengine-skeleton-archetype and it generate appname, appname-ear, appname-war. Based on what I read to convert backends to module, I need to have at least default module.…