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
5
votes
4 answers

GWT plugin for eclipse 4.3

I have the new version of eclipse: Eclipse Kepler 4.3. I'm looking for GWT plugin for that version of eclipse but I can not find. If I try to install the plugin for 4.2 eclipse version, what could happen? Thanks
4
votes
2 answers

Eclipse: "SDK directory '/myproject/war' does not exist"

Earlier today my Eclipse started to behave strangely. When I change the Google App Engine SDK of my project in Properties → Google → App Engine and click on OK, a dialog appears saying: 'Updating /myproject/war/WEB-INF/lib with jars from…
Dominik
  • 706
  • 7
  • 22
4
votes
3 answers

Google Eclipse Plugin is Gone?

This morning, I tried to get a coop student up and running on an older version of the Google App Engine for Eclipse plugin. The following website and all related links appear to have been wiped off the face of the…
Jake88
  • 955
  • 1
  • 19
  • 39
4
votes
1 answer

com.google.appengine.tools.enhancer.Enhance not found in Google App Engine project

I installed the Google Plugin for Eclipse and created a new Google App Engine project just as decribed in https://developers.google.com/appengine/docs/java/tools/eclipse. When building the project I'm getting the error Error: Could not find or load…
Walking Corpse
  • 107
  • 7
  • 31
  • 49
4
votes
3 answers

which are the files uri on GAE java emulating cloud storage with GCS client library?

I'm developing a web application using Google app engine for Java. I will use Google Cloud storage and according to the documentation, I'm using GCS client library to emulate cloud storage on local disk. I have no problem saving the files, I can see…
3
votes
3 answers

Using workspace projects with AppEngine

I'm trying to use a library project with my Google AppEngine project as a project on build path. Is there a way to get that included in the AppEngine project without having to copy the entire source or make a jar ? I only use a small portion of the…
Saad Farooq
  • 13,172
  • 10
  • 68
  • 94
3
votes
2 answers

Google App Engine + GWT + Eclipse: where do your unit tests live?

I'm just getting started with a project that combines GWT, Google App Engine and the Google Eclipse plugin. Where is the best place to store my tests? I normally keep my code organized Maven-style, with src/main/java, and tests in src/test/java. …
George Armhold
  • 30,824
  • 50
  • 153
  • 232
3
votes
3 answers

Google App Engine 1.6 available through Eclipse plugin?

When I run my GAE dev server, I get the following: [WARN] ******************************************************** There is a new version of the SDK available. ----------- Latest SDK: Release: 1.6.0 Timestamp: Mon Oct 17 19:46:22 EDT 2011 API…
Nick Heiner
  • 119,074
  • 188
  • 476
  • 699
3
votes
2 answers

Install previous version of GPE?

I want to roll back my Google Plugin for Eclipse to a previous version. How can I accomplish that?
Riley Lark
  • 20,660
  • 15
  • 80
  • 128
3
votes
2 answers

GWT 2.4.0 with Google Web Toolkit Plugin 3.8.0.v201410302155-rev-r42

I have a customer requirement of GWT 2.4.0 due to a Java 5 limitation. Up until this latest Google Web Toolkit Plugin update I have been able to successfully use the plugin with GWT 2.4.0. I am seeing an error regarding a missing gwt-codeserver.jar…
initialZero
  • 6,197
  • 9
  • 29
  • 38
3
votes
1 answer

How to Bundle google cloud endpoint message class in android

To pass data from an Activity to a Fragment, naturally, I think of using a Bundle. The problem in my case is that the Object I need to pass is a Google Cloud Endpoint message, which is neither Parcelable nor Serializable. So how might I pass the…
3
votes
1 answer

How to Add Static Resources in a GWT Application?

I am trying to add a PNG graphic to a GWT 2.6 application in Eclipse Kepler, using the latest plugins. I have found numerous StackOverflow questions dealing with this topic, such as this, this, this, this or this. Likewise, there are plenty of…
3
votes
5 answers

GWT Maven - webapp files getting deleted when running in dev mode

As specified in the gwt maven mojo plugin documentation, I have selected src/main/webapp folder as my war directory in eclipse->project properties->Google->Web application. Then, when I tried to run my gwt project in dev mode from eclipse, the html…
aquero
  • 843
  • 4
  • 13
  • 30
3
votes
1 answer

Serving blob from app-engine endpoint

I want to serve a blob from my google endpoint server to an android app; not a link to the blob, the actual blob. Do I have to encode the blob in Base64 to send it from the endpoint or is that handled by app-engine? Please do not confuse this…
3
votes
2 answers

Child entity identity (crisis) in JPA and app-engine

I have two models: Author and Book, where an author may have a list of books. To start with Author has a long @id and Book has a string @id. When I try to put data into the datastore, I get the error Cannot have a java.lang.String primary key and be…
1
2
3
9 10