Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-10 Thread David
I don't seem to have access to 19.0 snapshot, but 19.0 is out. However it
does not work with gwt 2.8 beta1. So I am stuck on this since I will need
to wait for 20.0 which will be released after gwt 2.8 is released.

On Wed, 9 Dec 2015 at 17:43 Thomas Broyer  wrote:

>
>
> On Wednesday, December 9, 2015 at 5:22:28 PM UTC+1, stuckagain wrote:
>>
>> Great news!
>>
>> I tried to recompile with Java8 and GWT 2.8 beta1 a project I am working
>> on. But I see these 2 errors:
>>
>> guava-gwt 18.0 does not seem to compile:
>> [INFO]Tracing compile failure path for type
>> 'com.google.common.collect.GwtPlatform'
>> [INFO]   [ERROR] Errors in
>> 'jar:file:/C:/Users/dnouls/.m2/repository/com/google/guava/guava-gwt/18.0/guava-gwt-18.0.jar!/com/goo
>> gle/common/collect/super/com/google/common/collect/GwtPlatform.java'
>> [INFO]  [ERROR] Line 38: The method createFrom(T[], int) is
>> undefined for the type Array
>>
>>
> Known issue: https://github.com/google/guava/wiki/Release19#gwt-notes
> TL;DR: use Guava 19.0-SNAPSHOT.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/09a1cab0-b31c-4c5e-a8c5-5a0877a831c6%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CABrJHW1hoDcSGqfD5TvB-V9QjHtjYQk2qwTb2woBBNUCBNX4jw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-09 Thread Thomas Broyer
So, we talked about it during our Steering Committee meeting today and, 
hoping I'm transcribing correctly:

   - GWT has moved to Java 7 and uses Java 7-isms, so Java 6 compatibility 
   is gone (but I believe we announced it at some point already, that 2.7 
   would be the last version to support Java 6)
   - the current patches in review adding Java 8-only emulations (using 
   defender methods in interfaces for instance) are only about super-sources, 
   so shouldn't change the current requirement (i.e. they don't mean GWT would 
   require Java 8)
   - as long as GWT can be built with Java 7, GWT 2.8 will be compatible 
   with Java 7. We'll have to discuss the matter again if there's a change 
   requiring Java 8 (such as CustomFieldSerializers for new Java 8 classes), 
   so it's not totally excluded that GWT 2.8 might require Java 8 (and as I 
   said above, if that's the case, it would mean gwt-servlet.jar would require 
   Java 8 too unless one uses Retrolambda or similar; if that ever happens, 
   –and this is my own comment, *not* in the name of the Steering 
   Committee– contributions to apply Retrolambda during the build would be 
   welcome, to produce a com.google.gwt:gwt-servlet:2.8.0:java7 in addition to 
   the "normal" com.google.gwt:gwt-servlet:2.8.0 requiring Java 8).

TL;DR: Java 6 compat is gone, GWT still compatible with Java 7 and 2.8 will 
likely be, though might require Java 8.

On Tuesday, December 8, 2015 at 4:21:06 PM UTC+1, Paul Robinson wrote:
>
> Thanks for the clarification Thomas.
>
> On Tue, Dec 8, 2015 at 1:45 PM, Thomas Broyer  wrote:
>
>>
>>
>> On Tuesday, December 8, 2015 at 1:54:40 PM UTC+1, Paul Robinson wrote:
>>>
>>>
>>>
>>> On Mon, Dec 7, 2015 at 3:06 PM, Colin Alworth  
>>> wrote:
>>>
 If I could be permitted to slight restate what Julien just said: We 
 will make a note of it, as we have done in the past, such as when the 
 default moved from java6 to java7: 
 http://www.gwtproject.org/release-notes.html#Release_Notes_2_6_0_RC1. 

>>>
>>> I was questioning what happens for GWT RPC in production at runtime.
>>>
>>> GWT 2.6 (and also 2.7) did not require Java 7 at runtime for RPC, 
>>> whereas GWT 2.8 does. Does the suggestion that it might require Java 8 by 
>>> the time GWT 2.8 is released apply to compile time or run time?
>>>
>>
>> With the current build scripts, yes; and it'll be quite hard to decouple 
>> the two.
>>  
>>
>>> The release notes should separate the requirements for compile time and 
>>> run time Java environment.
>>>
>>
>> You have no guarantee that your code will run in an earlier Java 
>> environment when you compile with a later one (i.e. if you cross-compile; 
>> see 
>> https://docs.oracle.com/javase/8/docs/technotes/tools/unix/javac.html#BHCIJIEG).
>>  
>> Things used to work earlier, but Java 8 makes it very real.
>> See 
>> http://developer-blog.cloudbees.com/2014/12/beware-siren-target-call.html 
>> and http://www.draconianoverlord.com/2014/04/01/jdk-compatibility.html 
>> for examples of that.
>> If you want to be compatible with Java 6, you should use a Java 6 JDK or 
>> at least a Java 6 bootclasspath (though as I said, Java 7 is in most cases 
>> –if not all– compatible with Java 6 if you make sure you don't use 
>> Java7-specific APIs).
>> If you require Java 8 at compile-time, then there are risks that your 
>> code won't work in a Java 6 or Java 7 environment.
>>
>> If any statement could me made, it'd be about client-side and 
>> server-side; or compile-time in the sense of the GWT Compiler, not to be 
>> confused with JavaC.
>>
>> Building GWT in a way such that it's compatible at runtime with Java 7 
>> (or 6) would at a minimum require building it (JavaC) with Java 7 (or 6) 
>> and then running tests with Java 8; or running Retrolambda or similar on 
>> gwt-servlet and requestfactory-* (but then ideally those would have to be 
>> exercised too). Anything else would require changing the build scripts and 
>> be much more complicated.
>> Because Oracle Java 7 is EOL'd, the chances that this happens are very 
>> low *unless* someone helps make it happen (or Vaadin, Sencha or RedHat 
>> –who have paying customers that probably would face that issue– possibly 
>> jump in).
>> (note: this is *me* talking, *not* in the name of the steering 
>> committee).
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Contributors" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/837ee151-4b87-42d5-8b2c-a9a83a157e68%40googlegroups.com
>>  
>> 
>> .
>>
>> For more 

Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-08 Thread Julien Dramaix
This is really nice!

Could you create a pull request on the existing Release note and add the
missing items ?

On Tue, Dec 8, 2015 at 3:58 AM Juan Pablo Gardella <
gardellajuanpa...@gmail.com> wrote:

> Hi contributors,
>
> I've created a google doc  with full GWT 2.8.0
> release notes. It's divided by features/components and links for each
> commit. I didn't put reverted commits, and fixes over features like
> JSInterop. Everyone can put comments. It could be added later at GWT
> official documentation once gwt 2.8.0 is completed.
>
> Juan
>
> On 7 December 2015 at 11:15, István Horváth  wrote:
>
>> ok, i have PR for this, i hope it fits Google's needs.
>>
>> 2015. december 7., hétfő 15:47:50 UTC+1 időpontban Julien Dramaix a
>> következőt írta:
>>>
>>> Feel free to fill a patch for that :)
>>>
>>> On Mon, Dec 7, 2015 at 2:28 PM István Horváth  wrote:
>>>
 it would nice to have if you update the release notes page with exact
 dates on all of the version on both the links and the linked details too.

 http://www.gwtproject.org/release-notes.html


 2015. december 4., péntek 10:51:13 UTC+1 időpontban Daniel Kurka a
 következőt írta:
>
> Hi all,
>
> we just finished testing for GWT 2.8.0-beta1. You can either download
> it from goo.gl/62SeR5 or from maven central.
>
> Release notes can be found here
> 
> .
>
> Please start testing and let us know about any issues you encounter by
> either discussion here or filing bugs on github
> .
>
> -Daniel
>
 --
 You received this message because you are subscribed to the Google
 Groups "GWT Contributors" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to
 google-web-toolkit-contributors+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/google-web-toolkit-contributors/06401611-3eeb-4647-9fca-69459939aa8d%40googlegroups.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>> You received this message because you are subscribed to the Google Groups
>> "GWT Contributors" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/5ac770a2-db1c-4676-b167-8632289decae%40googlegroups.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/CA%2BkiFseLrH5LPYM%3DkmqBFNrjqJOuvq28ZC9vvpfiM6xcKxNAYQ%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CABb_3%3D45OQA06rpq0J3KjZTSiqt-w7TqaNx9QnUV%2Be9VYsPU4Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-08 Thread Paul Robinson
On Mon, Dec 7, 2015 at 3:06 PM, Colin Alworth  wrote:

> If I could be permitted to slight restate what Julien just said: We will
> make a note of it, as we have done in the past, such as when the default
> moved from java6 to java7:
> http://www.gwtproject.org/release-notes.html#Release_Notes_2_6_0_RC1.
>

I was questioning what happens for GWT RPC in production at runtime.

GWT 2.6 (and also 2.7) did not require Java 7 at runtime for RPC, whereas
GWT 2.8 does. Does the suggestion that it might require Java 8 by the time
GWT 2.8 is released apply to compile time or run time?

The release notes should separate the requirements for compile time and run
time Java environment.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAGHNWNL1w7LPMXJL%2BBAy0kiRAkim_rVnEZjdUHbWgnLp86ANhw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-08 Thread Paul Robinson
Thanks for the clarification Thomas.

On Tue, Dec 8, 2015 at 1:45 PM, Thomas Broyer  wrote:

>
>
> On Tuesday, December 8, 2015 at 1:54:40 PM UTC+1, Paul Robinson wrote:
>>
>>
>>
>> On Mon, Dec 7, 2015 at 3:06 PM, Colin Alworth  wrote:
>>
>>> If I could be permitted to slight restate what Julien just said: We will
>>> make a note of it, as we have done in the past, such as when the default
>>> moved from java6 to java7:
>>> http://www.gwtproject.org/release-notes.html#Release_Notes_2_6_0_RC1.
>>>
>>
>> I was questioning what happens for GWT RPC in production at runtime.
>>
>> GWT 2.6 (and also 2.7) did not require Java 7 at runtime for RPC, whereas
>> GWT 2.8 does. Does the suggestion that it might require Java 8 by the time
>> GWT 2.8 is released apply to compile time or run time?
>>
>
> With the current build scripts, yes; and it'll be quite hard to decouple
> the two.
>
>
>> The release notes should separate the requirements for compile time and
>> run time Java environment.
>>
>
> You have no guarantee that your code will run in an earlier Java
> environment when you compile with a later one (i.e. if you cross-compile;
> see
> https://docs.oracle.com/javase/8/docs/technotes/tools/unix/javac.html#BHCIJIEG).
> Things used to work earlier, but Java 8 makes it very real.
> See
> http://developer-blog.cloudbees.com/2014/12/beware-siren-target-call.html
> and http://www.draconianoverlord.com/2014/04/01/jdk-compatibility.html
> for examples of that.
> If you want to be compatible with Java 6, you should use a Java 6 JDK or
> at least a Java 6 bootclasspath (though as I said, Java 7 is in most cases
> –if not all– compatible with Java 6 if you make sure you don't use
> Java7-specific APIs).
> If you require Java 8 at compile-time, then there are risks that your code
> won't work in a Java 6 or Java 7 environment.
>
> If any statement could me made, it'd be about client-side and server-side;
> or compile-time in the sense of the GWT Compiler, not to be confused with
> JavaC.
>
> Building GWT in a way such that it's compatible at runtime with Java 7 (or
> 6) would at a minimum require building it (JavaC) with Java 7 (or 6) and
> then running tests with Java 8; or running Retrolambda or similar on
> gwt-servlet and requestfactory-* (but then ideally those would have to be
> exercised too). Anything else would require changing the build scripts and
> be much more complicated.
> Because Oracle Java 7 is EOL'd, the chances that this happens are very low
> *unless* someone helps make it happen (or Vaadin, Sencha or RedHat –who
> have paying customers that probably would face that issue– possibly jump
> in).
> (note: this is *me* talking, *not* in the name of the steering committee).
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/837ee151-4b87-42d5-8b2c-a9a83a157e68%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAGHNWNJh97QN%3D3yywU8fhh7OdNoZWEer9dZ3K%2B%3Ds76POVLHN8w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-08 Thread Brandon Donnelson
I think you may have two libraries on the classpath. Regarding Eclipse, it
is ready.

Find the download that will work with mars and GWT 2.8.
http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/Download.html

On Tue, Dec 8, 2015 at 8:52 AM, Pedro Lamarão 
wrote:

> Em sexta-feira, 4 de dezembro de 2015 07:51:13 UTC-2, Daniel Kurka
> escreveu:
>
>
>> Please start testing and let us know about any issues you encounter by
>> either discussion here or filing bugs on github
>> .
>>
>
>
> Is it ready for use with Google Plugin for Eclipse?
> I added it as a new SDK and retargeted my projects -- in the build path,
> in the compiler path for annotations.
> A build with the GWT compilers ends with:
>
> [ERROR] Unexpected internal compiler error
> java.lang.NoSuchMethodError:
> com.google.gwt.util.tools.shared.Md5Utils.getMd5Digest(Ljava/lang/String;)[B
> at
> com.google.gwt.dev.util.CompilerVersion.getHash(CompilerVersion.java:42)
> at
> com.google.gwt.dev.javac.PersistentUnitCacheDir.(PersistentUnitCacheDir.java:53)
> at
> com.google.gwt.dev.javac.PersistentUnitCache$BackgroundService.(PersistentUnitCache.java:275)
> at
> com.google.gwt.dev.javac.PersistentUnitCache.(PersistentUnitCache.java:104)
> at
> com.google.gwt.dev.javac.UnitCacheSingleton.get(UnitCacheSingleton.java:98)
> at com.google.gwt.dev.Compiler.getOrCreateUnitCache(Compiler.java:89)
> at com.google.gwt.dev.Compiler.run(Compiler.java:183)
> at com.google.gwt.dev.Compiler.run(Compiler.java:156)
> at com.google.gwt.dev.Compiler$1.run(Compiler.java:117)
> at
> com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:55)
> at
> com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger(CompileTaskRunner.java:50)
> at com.google.gwt.dev.Compiler.main(Compiler.java:124)
>
> P.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/77dac21c-66d7-43ed-8b50-88f78de5eda7%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 

*Brandon Donnelson* / GXT Support Engineer

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAA_mbNNxC%3Dhxr%2BzO_adCT7YgJ-dmOzGyYN7-TXA9mTxuv9cCBA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-08 Thread Pedro Lamarão
Changing the SDK version in the Google configuration tab had a strange 
effect in the build path of my projects.
Manually resetting the build path solved my issue.
Thanks!
P.

Em terça-feira, 8 de dezembro de 2015 15:43:22 UTC-2, Brandon Donnelson 
escreveu:
>
> Oops, a library is missing from the classpath. :) Try adding gwt-dev. 
>
> On Tue, Dec 8, 2015 at 9:42 AM, Brandon Donnelson  > wrote:
>
>> I think you may have two libraries on the classpath. Regarding Eclipse, 
>> it is ready. 
>>
>> Find the download that will work with mars and GWT 2.8. 
>>
>> http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/Download.html
>>
>> On Tue, Dec 8, 2015 at 8:52 AM, Pedro Lamarão > > wrote:
>>
>>> Em sexta-feira, 4 de dezembro de 2015 07:51:13 UTC-2, Daniel Kurka 
>>> escreveu:
>>>  
>>>
 Please start testing and let us know about any issues you encounter by 
 either discussion here or filing bugs on github 
 .

>>>
>>>
>>> Is it ready for use with Google Plugin for Eclipse?
>>> I added it as a new SDK and retargeted my projects -- in the build path, 
>>> in the compiler path for annotations.
>>> A build with the GWT compilers ends with:
>>>
>>> [ERROR] Unexpected internal compiler error
>>> java.lang.NoSuchMethodError: 
>>> com.google.gwt.util.tools.shared.Md5Utils.getMd5Digest(Ljava/lang/String;)[B
>>> at 
>>> com.google.gwt.dev.util.CompilerVersion.getHash(CompilerVersion.java:42)
>>> at 
>>> com.google.gwt.dev.javac.PersistentUnitCacheDir.(PersistentUnitCacheDir.java:53)
>>> at 
>>> com.google.gwt.dev.javac.PersistentUnitCache$BackgroundService.(PersistentUnitCache.java:275)
>>> at 
>>> com.google.gwt.dev.javac.PersistentUnitCache.(PersistentUnitCache.java:104)
>>> at 
>>> com.google.gwt.dev.javac.UnitCacheSingleton.get(UnitCacheSingleton.java:98)
>>> at com.google.gwt.dev.Compiler.getOrCreateUnitCache(Compiler.java:89)
>>> at com.google.gwt.dev.Compiler.run(Compiler.java:183)
>>> at com.google.gwt.dev.Compiler.run(Compiler.java:156)
>>> at com.google.gwt.dev.Compiler$1.run(Compiler.java:117)
>>> at 
>>> com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:55)
>>> at 
>>> com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger(CompileTaskRunner.java:50)
>>> at com.google.gwt.dev.Compiler.main(Compiler.java:124)
>>>
>>> P.
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "GWT Contributors" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to google-web-toolkit-contributors+unsubscr...@googlegroups.com 
>>> .
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/77dac21c-66d7-43ed-8b50-88f78de5eda7%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> -- 
>>
>> *Brandon Donnelson* / GXT Support Engineer
>>
>>
>>
>
>
> -- 
>
> *Brandon Donnelson* / GXT Support Engineer
>
>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/6d69e1d4-250b-4ba4-a5b6-2a6445e51fdf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-08 Thread 'Goktug Gokdogan' via GWT Contributors
Hi Brandon. Little bit of topic but I think we may want to make it less
convenient to use old devmode as it is deprecated. You may want to remove
the options for dev mode in GPE (if you haven't already). For example, the
default menu option for running unit test is to run it in dev mode.


On Tue, Dec 8, 2015 at 9:42 AM, Brandon Donnelson <
brandon.donnel...@sencha.com> wrote:

> I think you may have two libraries on the classpath. Regarding Eclipse, it
> is ready.
>
> Find the download that will work with mars and GWT 2.8.
> http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/Download.html
>
> On Tue, Dec 8, 2015 at 8:52 AM, Pedro Lamarão 
> wrote:
>
>> Em sexta-feira, 4 de dezembro de 2015 07:51:13 UTC-2, Daniel Kurka
>> escreveu:
>>
>>
>>> Please start testing and let us know about any issues you encounter by
>>> either discussion here or filing bugs on github
>>> .
>>>
>>
>>
>> Is it ready for use with Google Plugin for Eclipse?
>> I added it as a new SDK and retargeted my projects -- in the build path,
>> in the compiler path for annotations.
>> A build with the GWT compilers ends with:
>>
>> [ERROR] Unexpected internal compiler error
>> java.lang.NoSuchMethodError:
>> com.google.gwt.util.tools.shared.Md5Utils.getMd5Digest(Ljava/lang/String;)[B
>> at
>> com.google.gwt.dev.util.CompilerVersion.getHash(CompilerVersion.java:42)
>> at
>> com.google.gwt.dev.javac.PersistentUnitCacheDir.(PersistentUnitCacheDir.java:53)
>> at
>> com.google.gwt.dev.javac.PersistentUnitCache$BackgroundService.(PersistentUnitCache.java:275)
>> at
>> com.google.gwt.dev.javac.PersistentUnitCache.(PersistentUnitCache.java:104)
>> at
>> com.google.gwt.dev.javac.UnitCacheSingleton.get(UnitCacheSingleton.java:98)
>> at com.google.gwt.dev.Compiler.getOrCreateUnitCache(Compiler.java:89)
>> at com.google.gwt.dev.Compiler.run(Compiler.java:183)
>> at com.google.gwt.dev.Compiler.run(Compiler.java:156)
>> at com.google.gwt.dev.Compiler$1.run(Compiler.java:117)
>> at
>> com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:55)
>> at
>> com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger(CompileTaskRunner.java:50)
>> at com.google.gwt.dev.Compiler.main(Compiler.java:124)
>>
>> P.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "GWT Contributors" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/77dac21c-66d7-43ed-8b50-88f78de5eda7%40googlegroups.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
>
> *Brandon Donnelson* / GXT Support Engineer
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAA_mbNNxC%3Dhxr%2BzO_adCT7YgJ-dmOzGyYN7-TXA9mTxuv9cCBA%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAN%3DyUA0W1WbZNvhf2GibuLNL%3D-ga1gJAf8Eq1Vwc7TgB-5WNag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-07 Thread Colin Alworth
If I could be permitted to slight restate what Julien just said: We will
make a note of it, as we have done in the past, such as when the default
moved from java6 to java7:
http://www.gwtproject.org/release-notes.html#Release_Notes_2_6_0_RC1. That
being said, we of course welcome any community assistance in maintaining
GWT, and documentation is an excellent place to get started and make
significant contributions without going through the code review process
that GWT requires.

Java6 has been EOL'd for almost three years, though technically Java7 has
also reached that stage (last April). As long as we hang on to support for
Java6, we would be unable to use new classes/methods/features of Java7 (and
Java8), excepting the use of something like retrolambda like Thomas
suggested. We would likewise welcome any testing in that area after
performing an automated change to the gwt-servlet.jar. If you find problems
or discover that it works perfectly, and if you share the build scripts you
used to achieve it, that would make it easier to include these changes into
the official release.

On Mon, Dec 7, 2015 at 8:47 AM Julien Dramaix 
wrote:

> Feel free to fill a patch for that :)
>
> On Mon, Dec 7, 2015 at 2:28 PM István Horváth  wrote:
>
>> it would nice to have if you update the release notes page with exact
>> dates on all of the version on both the links and the linked details too.
>>
>> http://www.gwtproject.org/release-notes.html
>>
>>
>> 2015. december 4., péntek 10:51:13 UTC+1 időpontban Daniel Kurka a
>> következőt írta:
>>>
>>> Hi all,
>>>
>>> we just finished testing for GWT 2.8.0-beta1. You can either download it
>>> from goo.gl/62SeR5 or from maven central.
>>>
>>> Release notes can be found here
>>> 
>>> .
>>>
>>> Please start testing and let us know about any issues you encounter by
>>> either discussion here or filing bugs on github
>>> .
>>>
>>> -Daniel
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "GWT Contributors" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/06401611-3eeb-4647-9fca-69459939aa8d%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/CABb_3%3D5%3DYLe_WNJbvc48mmfRO8Ds1WqqtDwNvhhPD3C66DJHpQ%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CADcXZMxguUkafyvfEG%3DwtuMOoCEfchvenxyfDWxi07D39nvs%2BA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-07 Thread István Horváth
i not sure about this link has the correct 
dates: https://en.wikipedia.org/wiki/Google_Web_Toolkit
also it lacks of 2.5.0 and 2.5.1

2015. december 7., hétfő 16:40:22 UTC+1 időpontban István Horváth a 
következőt írta:
>
> good, where can i find exact dates about release dates (full date, like 
> year month and day) from the beginning?
>
> 2015. december 7., hétfő 15:47:50 UTC+1 időpontban Julien Dramaix a 
> következőt írta:
>>
>> Feel free to fill a patch for that :)
>>
>> On Mon, Dec 7, 2015 at 2:28 PM István Horváth  wrote:
>>
>>> it would nice to have if you update the release notes page with exact 
>>> dates on all of the version on both the links and the linked details too.
>>>
>>> http://www.gwtproject.org/release-notes.html
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/b1cddc19-926a-4304-a583-6b0312cc82a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-07 Thread István Horváth
good, where can i find exact dates about release dates (full date, like 
year month and day) from the beginning?

2015. december 7., hétfő 15:47:50 UTC+1 időpontban Julien Dramaix a 
következőt írta:
>
> Feel free to fill a patch for that :)
>
> On Mon, Dec 7, 2015 at 2:28 PM István Horváth  > wrote:
>
>> it would nice to have if you update the release notes page with exact 
>> dates on all of the version on both the links and the linked details too.
>>
>> http://www.gwtproject.org/release-notes.html
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/47fda90d-e126-4d8f-a8a0-185352bbbf23%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-07 Thread Julien Dramaix
Feel free to fill a patch for that :)

On Mon, Dec 7, 2015 at 2:28 PM István Horváth  wrote:

> it would nice to have if you update the release notes page with exact
> dates on all of the version on both the links and the linked details too.
>
> http://www.gwtproject.org/release-notes.html
>
>
> 2015. december 4., péntek 10:51:13 UTC+1 időpontban Daniel Kurka a
> következőt írta:
>>
>> Hi all,
>>
>> we just finished testing for GWT 2.8.0-beta1. You can either download it
>> from goo.gl/62SeR5 or from maven central.
>>
>> Release notes can be found here
>> .
>>
>> Please start testing and let us know about any issues you encounter by
>> either discussion here or filing bugs on github
>> .
>>
>> -Daniel
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/06401611-3eeb-4647-9fca-69459939aa8d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CABb_3%3D5%3DYLe_WNJbvc48mmfRO8Ds1WqqtDwNvhhPD3C66DJHpQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-07 Thread Colin Alworth
Sorry, I hadn't understood that your primary interest was in release dates,
but though it was more for compatibility with upstream or related tools on
release. That said, I think that the list of downloads at
https://code.google.com/p/google-web-toolkit/downloads/list may prove
useful for historical release dates.

On Mon, Dec 7, 2015 at 9:42 AM István Horváth  wrote:

> i not sure about this link has the correct dates:
> https://en.wikipedia.org/wiki/Google_Web_Toolkit
> also it lacks of 2.5.0 and 2.5.1
>
> 2015. december 7., hétfő 16:40:22 UTC+1 időpontban István Horváth a
> következőt írta:
>>
>> good, where can i find exact dates about release dates (full date, like
>> year month and day) from the beginning?
>>
>
>>
>> 2015. december 7., hétfő 15:47:50 UTC+1 időpontban Julien Dramaix a
>> következőt írta:
>>
> Feel free to fill a patch for that :)
>>>
>>> On Mon, Dec 7, 2015 at 2:28 PM István Horváth  wrote:
>>>
 it would nice to have if you update the release notes page with exact
 dates on all of the version on both the links and the linked details too.

 http://www.gwtproject.org/release-notes.html

>>> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/b1cddc19-926a-4304-a583-6b0312cc82a4%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CADcXZMzpwm1O-H9bFWrHn1gmrBhX8mpB1zujr8e7SH4KGv%3DrmQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-07 Thread Thomas Broyer


On Monday, December 7, 2015 at 4:40:22 PM UTC+1, István Horváth wrote:
>
> good, where can i find exact dates about release dates (full date, like 
> year month and day) from the beginning?
>

https://code.google.com/archive/p/google-web-toolkit/downloads has all the 
old ones.
Starting with 2.1.0 (5 years ago), releases have "official" Maven 
artifacts, so you can find their dates 
here: 
https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.google.gwt%22%20AND%20a%3A%22gwt%22
 

> 2015. december 7., hétfő 15:47:50 UTC+1 időpontban Julien Dramaix a 
> következőt írta:
>>
>> Feel free to fill a patch for that :)
>>
>> On Mon, Dec 7, 2015 at 2:28 PM István Horváth  wrote:
>>
>>> it would nice to have if you update the release notes page with exact 
>>> dates on all of the version on both the links and the linked details too.
>>>
>>> http://www.gwtproject.org/release-notes.html
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/a6d8054c-ba14-4988-8b92-f04eff17b89d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-07 Thread István Horváth
ok, i have PR for this, i hope it fits Google's needs.

2015. december 7., hétfő 15:47:50 UTC+1 időpontban Julien Dramaix a 
következőt írta:
>
> Feel free to fill a patch for that :)
>
> On Mon, Dec 7, 2015 at 2:28 PM István Horváth  > wrote:
>
>> it would nice to have if you update the release notes page with exact 
>> dates on all of the version on both the links and the linked details too.
>>
>> http://www.gwtproject.org/release-notes.html
>>
>>
>> 2015. december 4., péntek 10:51:13 UTC+1 időpontban Daniel Kurka a 
>> következőt írta:
>>>
>>> Hi all,
>>>
>>> we just finished testing for GWT 2.8.0-beta1. You can either download it 
>>> from goo.gl/62SeR5 or from maven central.
>>>
>>> Release notes can be found here 
>>> 
>>> .
>>>
>>> Please start testing and let us know about any issues you encounter by 
>>> either discussion here or filing bugs on github 
>>> .
>>>
>>> -Daniel
>>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Contributors" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com 
>> .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/06401611-3eeb-4647-9fca-69459939aa8d%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/5ac770a2-db1c-4676-b167-8632289decae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-07 Thread Juan Pablo Gardella
Hi contributors,

I've created a google doc  with full GWT 2.8.0
release notes. It's divided by features/components and links for each
commit. I didn't put reverted commits, and fixes over features like
JSInterop. Everyone can put comments. It could be added later at GWT
official documentation once gwt 2.8.0 is completed.

Juan

On 7 December 2015 at 11:15, István Horváth  wrote:

> ok, i have PR for this, i hope it fits Google's needs.
>
> 2015. december 7., hétfő 15:47:50 UTC+1 időpontban Julien Dramaix a
> következőt írta:
>>
>> Feel free to fill a patch for that :)
>>
>> On Mon, Dec 7, 2015 at 2:28 PM István Horváth  wrote:
>>
>>> it would nice to have if you update the release notes page with exact
>>> dates on all of the version on both the links and the linked details too.
>>>
>>> http://www.gwtproject.org/release-notes.html
>>>
>>>
>>> 2015. december 4., péntek 10:51:13 UTC+1 időpontban Daniel Kurka a
>>> következőt írta:

 Hi all,

 we just finished testing for GWT 2.8.0-beta1. You can either download
 it from goo.gl/62SeR5 or from maven central.

 Release notes can be found here
 
 .

 Please start testing and let us know about any issues you encounter by
 either discussion here or filing bugs on github
 .

 -Daniel

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GWT Contributors" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-web-toolkit-contributors+unsubscr...@googlegroups.com
>>> .
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/06401611-3eeb-4647-9fca-69459939aa8d%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/5ac770a2-db1c-4676-b167-8632289decae%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CA%2BkiFseLrH5LPYM%3DkmqBFNrjqJOuvq28ZC9vvpfiM6xcKxNAYQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.