Re: [gwt-contrib] Re: two errors in master

2015-01-31 Thread Jens
It looks like I've already a dependency to guava-16.0.1-rebased.jar in the trunk/dev/build.xml (did not change anything except the jdt-things). Here is the full build.xml: https://gist.github.com/foxylion/93c69dcc40a0c0e3a95c Did I miss something? Have you updated the SVN tools checkout

Re: [gwt-contrib] Re: two errors in master

2015-01-31 Thread Jakob Jarosch
Hi, I've the same problems compiling the source of gwt. With the following steps (used the tips from here) I tried to fix it but had no luck: - Cloned the repository, checked out the tools - Downloaded the updated jdt jar file - Moved the jdtCompilerAdapter out of the jar - Deleted the two files

Re: [gwt-contrib] Re: two errors in master

2015-01-31 Thread Jakob Jarosch
Thanks Jens, this was the problem. Looks like I missed to change it the second time. - Jakob Am Samstag, 31. Januar 2015 15:22:46 UTC+1 schrieb Jens: It looks like I've already a dependency to guava-16.0.1-rebased.jar in the trunk/dev/build.xml (did not change anything except the

Re: [gwt-contrib] Re: two errors in master

2015-01-31 Thread Jens
Thanks Jens, this was the problem. Looks like I missed to change it the second time. Eclipse has also published a new build of the jar in case you want to use it:

Re: [gwt-contrib] Re: two errors in master

2015-01-31 Thread Julien Dramaix
Jakob, It seems that the dependency to the guava-16.0.1-rebased.jar is missing. You can add it manually, it is located in tools/lib/guava/guava-16.0.1/ On Sat Jan 31 2015 at 9:09:55 AM Jakob Jarosch jakob.jaro...@gmail.com wrote: Hi, I've the same problems compiling the source of gwt. With

Re: [gwt-contrib] Re: two errors in master

2015-01-31 Thread Jakob Jarosch
Hi Julien, It looks like I've already a dependency to guava-16.0.1-rebased.jar in the trunk/dev/build.xml (did not change anything except the jdt-things). Here is the full build.xml: https://gist.github.com/foxylion/93c69dcc40a0c0e3a95c Did I miss something? Am Samstag, 31. Januar 2015

Re: [gwt-contrib] Re: two errors in master

2015-01-11 Thread confile
Hi Jens, in gwt-checkout/dev/build.xml I changed jdtCompilerAdapter-3.10.0 to jdtCompilerAdapter-3.11.0.v20141029-0804 But there is no reference to org.eclipse.jdt.core- How do I reference it? There is another jdt reference to: jdt-3.10.0.jar What is this do I have to change it? Where do

Re: [gwt-contrib] Re: two errors in master

2015-01-11 Thread confile
Am I right that the two references to: jdt-3.10.0.jar should be changed to org.eclipse.jdt.core-3.11.0.v20141029-0804.jar and jdtCompilerAdapter-3.10.0.jar should be changed to jdtCompilerAdapter-3.11.0.v20141029-0804.jar Michael Am Sonntag, 11. Januar 2015 14:34:43 UTC+1 schrieb Jens:

Re: [gwt-contrib] Re: two errors in master

2015-01-11 Thread Jens
Am I right that the two references to: jdt-3.10.0.jar should be changed to org.eclipse.jdt.core-3.11.0.v20141029-0804.jar and jdtCompilerAdapter-3.10.0.jar should be changed to jdtCompilerAdapter-3.11.0.v20141029-0804.jar Yes. -- J. -- You received this message because you

Re: [gwt-contrib] Re: two errors in master

2015-01-11 Thread Jens
There is another jdt reference to: jdt-3.10.0.jar There are two references to jdt-3.10.0.jar and two to jdtCompilerAdapter-3.10.0.jar. All four references need to be changed. -- J. -- You received this message because you are subscribed to the Google Groups GWT Contributors group. To

Re: [gwt-contrib] Re: two errors in master

2015-01-11 Thread confile
It does not compile. Could you please upload the build gwt.zip file somewhere? I also attached my build.xml. I get the following errors when doing ant dist-dev: [gwt.javac] /Users/mg/Downloads/GWT/trunk/dev/core/src/com/google/gwt/dev/jjs/impl/GwtAstBuilder.java:131: error: package

Re: [gwt-contrib] Re: two errors in master

2015-01-11 Thread Jens
Sounds like you have deleted the classes that you should actually keep. I said you can optionally delete class files that *DO NOT* match org/eclipse/jdt/core/compiler, org/eclipse/jdt/internal/compiler, org/eclipse/jdt/internal/core/util -- J. -- You received this message because you are

Re: [gwt-contrib] Re: two errors in master

2015-01-11 Thread confile
Actually, there are three positions of jdt-3.10.0.jar in the build file and three positions of jdtCompilerAdapter-3.10.0.jar. If I change all but the last pathelement location=${gwt.tools.lib}/eclipse/jdt-3.10.0.jar/ then I can compile. If I change that to I get an error. I am stuck could

Re: [gwt-contrib] Re: two errors in master

2015-01-10 Thread confile
Hi Jens, could you please explain how you did the update of JDT? What and where do I have to change something? Thank you Michael Am Mittwoch, 3. Dezember 2014 21:21:48 UTC+1 schrieb Jens: Given that GWT embeds JDT, I wonder if it's a bug in the version of JDT we're currently using? Just

Re: [gwt-contrib] Re: two errors in master

2015-01-10 Thread Jens
https://repo.eclipse.org/service/local/repo_groups/eclipse/content/org/eclipse/jdt/org.eclipse.jdt.core/3.11.0.v20141029-0804/org.eclipse.jdt.core-3.11.0.v20141029-0804.jar to run the script: update-jdt.py There is no sources jar yet in the eclipse repo and the GWT build does not need

Re: [gwt-contrib] Re: two errors in master

2015-01-10 Thread confile
Where do I find the source file for https://repo.eclipse.org/service/local/repo_groups/eclipse/content/org/eclipse/jdt/org.eclipse.jdt.core/3.11.0.v20141029-0804/org.eclipse.jdt.core-3.11.0.v20141029-0804.jar to run the script: update-jdt.py Michael Am Mittwoch, 3. Dezember 2014 21:21:48

Re: [gwt-contrib] Re: two errors in master

2015-01-09 Thread confile
I tried: inherits name=com.google.common.collect.Collect/ with Java 8 and get the following error even with changing the JDT jar in the eclipse plugin folder: Tracing compile failure path for type 'com.google.common.collect.Collections2' [ERROR] Errors in

Re: [gwt-contrib] Re: two errors in master

2014-12-03 Thread Jens
Given that GWT embeds JDT, I wonder if it's a bug in the version of JDT we're currently using? Just guessing, but it looks like there is a 3.11.0 version that I might try as a knee jerk/couldn't hurt first step: https://repo.eclipse.org/index.html#nexus-search;quick~jdt (Curious that

Re: [gwt-contrib] Re: two errors in master

2014-12-03 Thread Stephen Haberman
Wow, that's great, Jens! Thanks for digging in to this. - Stephen -- 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

Re: [gwt-contrib] Re: two errors in master

2014-12-02 Thread Jens
I was pretty surprised to find that Guava doesn't compile for 1.8: https://github.com/google/guava/issues/1738 But not at all for the reason/compile errors I was getting (which were related to, mostly AFAICT, Predicates.and method missing). The Guava issue is pretty old and doesn't

Re: [gwt-contrib] Re: two errors in master

2014-12-02 Thread Stephen Haberman
So I think we really have a GWT issue. Great detective work, Jens. I agree, it looks like these type parameters only cause confusion to the GWT compiler, and not to regular the Java/Eclipse compilers. Given that GWT embeds JDT, I wonder if it's a bug in the version of JDT we're currently

[gwt-contrib] Re: two errors in master

2014-12-01 Thread Stephen Haberman
Okay, okay, sorry for all the emails, but I ditched sourceLevel 1.8 and am now just playing with the new cached-SDM... Wow. It's awesome. Great work! I was hesitant to move our app over to 2.7.0, but this, this is nice. - Stephen -- You received this message because you are subscribed to

Re: [gwt-contrib] Re: two errors in master

2014-12-01 Thread 'John Stalcup' via GWT Contributors
Glad you like the cache reuse speedup! Also thanks for pointing out the CME, a fix for it is in review at https://gwt-review.googlesource.com/#/c/10500/ On Mon Dec 01 2014 at 2:27:20 AM Stephen Haberman stephen.haber...@gmail.com wrote: Okay, okay, sorry for all the emails, but I ditched

Re: [gwt-contrib] Re: two errors in master

2014-12-01 Thread Stephen Haberman
Maybe I'll go try and build a 1.8 version of Guava and see if the issue is in Guava itself? Not sure. I was pretty surprised to find that Guava doesn't compile for 1.8: https://github.com/google/guava/issues/1738 But not at all for the reason/compile errors I was getting (which were related

[gwt-contrib] Re: two errors in master

2014-11-30 Thread Stephen Haberman
Note that in my previous email, both errors came from running (Super)DevMode, but FWIW the Guava errors also occur in a regular production compile (which I was not anticipating). - Stephen On Sunday, November 30, 2014 4:24:21 PM UTC-6, Stephen Haberman wrote: Hi, Given that the reuse-SDM

[gwt-contrib] Re: two errors in master

2014-11-30 Thread Jens
Hm funny. Just wanted to verify the Predicates issue but I can not launch my app anymore for some weird reason. Somehow the java compiler has detected a duplicate class in guava-gwt-18.0.jar: - com.google.common.collect.AbstractIterator - com.google.common.base.AbstractIterator They are

[gwt-contrib] Re: two errors in master

2014-11-30 Thread Stephen Haberman
Note that in my previous email, both errors came from running (Super)DevMode, but FWIW the Guava errors also occur in a regular production compile (which I was not anticipating). Ah, crap, I had thought checked for this, but I had mistakenly introduced a 2nd variable: source level. In