FYI: Painful but working GAEDS using JDK 1.8.31 .... I am not allowed to run Java 7 on my development machine. 
Learned the following.
Used kepler eclipse and smartgwtpro 4.1p
Couldn't use 2.5.1 gwt, even though 2.6 is not supported. Had too many issues with getting google gwt plugins to work with gwt 2.5.1 with appengine 1.8.1 or 1.9.25. Used App engine1.9.25 since I plan to deploy in the google cloud architecture.
Note : You get a datastore error when we try to filter the city in the GAEDS-NOSQL demo. (Why? Because nosql doesn't support the "like" operator, the demo uses the wrong paradigm for nosql.).
1) Installed 4.2 google gwt plugin in eclipse. Had to install the latest version.
2) Ant in eclipse Kepler is still bundled at 1.8.4. You have to add build.compiler=javac1.7 to the ant launch properties (use this on the GAEDS ant environment) for the Java 8 compiler to work in Ant 1.8.4.
3) Updated the ant build file.
A. Changed the appengine-dev version to 1.9.25 from the 1.8.1.
B. Changed the environment to use the plugin versions  (2.6 and 1.9.25 respectively of the SDKs) from eclipse "google tools" for GWT_HOME and APPENGINE_HOME. I use both GWT and SmartGwt. It's best to get GWT working first, BTW. 
I run in SuperDev mode for the application.
Build.xml for GAEDS is attached.
 
Learned the following.
Used kepler eclipse and smartgwtpro 4.1p
Couldn't use 2.5.1 gwt, even though 2.6 is not supported. Had too many issues with getting google gwt plugins to work with gwt 2.5.1 with appengine 1.8.1 or 1.9.25. Used App engine1.9.25 since I plan to deploy in the google cloud architecture.
Note : You get a datastore error when we try to filter the city in the GAEDS-NOSQL demo. (Why? Because nosql doesn't support the "like" operator, the demo uses the wrong paradigm for nosql.).
1) Installed 4.2 google gwt plugin in eclipse. Had to install the latest version.
2) Ant in eclipse Kepler is still bundled at 1.8.4. You have to add build.compiler=javac1.7 to the ant launch properties (use this on the GAEDS ant environment) for the Java 8 compiler to work in Ant 1.8.4.
3) Updated the ant build file.
A. Changed the appengine-dev version to 1.9.25 from the 1.8.1.
B. Changed the environment to use the plugin versions  (2.6 and 1.9.25 respectively of the SDKs) from eclipse "google tools" for GWT_HOME and APPENGINE_HOME. I use both GWT and SmartGwt. It's best to get GWT working first, BTW. 
I run in SuperDev mode for the application.
Build.xml for GAEDS is attached.
 
Comment