If you use a build tool that understands Maven you can use 2.8.0-SNAPSHOT provided through https://oss.sonatype.org/content/repositories/google-snapshots/
Otherwise you have to build GWT from source: mkdir gwtproject cd gwtproject git clone https://gwt.googlesource.com/gwt gwt svn checkout http://google-web-toolkit.googlecode.com/svn/tools/ tools cd gwt export GWT_VERSION=2.8.0-SNAPSHOT && ant clean elemental dist-dev The SDK can then be found in the build/dist folder. If you don't need Elemental you can skip that by removing "elemental" from the above command. Note that only Java8 syntax is supported. If you need Java 8 APIs you have to emulate them yourself for now (and maybe contribute them). I have done some work for java.util stuff that you can find on Gerrit if you need it: https://gwt-review.googlesource.com/#/q/topic:java8-emul . -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
