Re: migrate GWT 2.1.1 to 2.2 error

2011-02-25 Thread David Chandler
See http://groups.google.com/group/google-web-toolkit/msg/a5afd58dfa6f4763 http://groups.google.com/group/google-web-toolkit/msg/3b945fe28bbea3b8 To resolve the GWT Designer error, you can either install the latest GWT Designer from the beta channel as described in Eric's message above or manuall

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-24 Thread Jason Sheedy
It appears this is not really a workable solution. After adding a dependency to another GWT module in my pom I started getting the following error: java.lang.NoSuchFieldError: reportUnusedDeclaredThrownExceptionIncludeDocCommentReference Apparently this is caused quote: "when there are multiple

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-21 Thread Jason Sheedy
Hi Alex, Just to confirm ... I had the same problem and your suggested fix to add gwt-dev to the pom fixed it for me. Cheers, Jason On Feb 15, 6:34 pm, "F. Lancer" wrote: > Hi, Brice. > > Try  to add 'gwt-dev-2.2.0.jar' to your project and rebuild. > > pom.xml: > >         com.google.gwt >  

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-17 Thread Philippe Beaudoin
You're right, thanks! I don't know why I now have a dependency on assistedinject, but adding it worked. Since I did not really like the workaround of adding a dependency on gwt-dev, I recompiled the gwt-maven-plugin to depend on gwt-2.2. I'm sure the gwt-maven-plugin guys will publish v 2.2.0 s

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-17 Thread Thomas Broyer
On Thursday, February 17, 2011 11:48:04 AM UTC+1, Philippe Beaudoin wrote: > > Also, the proposed workaround of adding a dependency on gwt-dev does not > work for me. mvn install gives the following error: > > [INFO] [ERROR] Internal compiler error > [INFO] java.lang.NoClassDefFoundError:

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-17 Thread Thomas Broyer
FYI, I tried 2.2-rc1, 2.2.0 and a 2.3-SNAPSHOT with gwt-maven-plugin 2.1.0-1 with no problem. Note that I only use the gwt:compile goal of the plugin, and never call it directly (always through "mvn package" or "mvn install" on my "root" module; the goal is attached to the prepare-package phase)

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-17 Thread Philippe Beaudoin
Also, the proposed workaround of adding a dependency on gwt-dev does not work for me. mvn install gives the following error: [INFO] [ERROR] Internal compiler error [INFO] java.lang.NoClassDefFoundError: com/google/inject/assistedinject/FactoryModuleBuilder [INFO] at com.google.gwt.injec

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-17 Thread Philippe Beaudoin
I am running into the same problem. I wonder if it could be related to the fact that gwt-maven-plugin is version 2.1.0-1 and needs to be updated for 2.2.0? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-16 Thread Carlo Alberto Degli Atti
yes it works if I run "mvn gwt:compile" from within the module (I have a multi-module maven project), but if I run "mvn install" from the parent root I still have that error. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to thi

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-16 Thread skalimer0
write dependency of gwt-dev in gwt-maven section and not with all dependencies. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-16 Thread Carlo Alberto Degli Atti
I'm still investigating... but: 1) if I remove the gwt-dev dependency, I can start the gwt app from Eclipse *BUT* if I try to compile using maven (ie mvn gwt:compile) I get "java.lang.NoClassDefFoundError: com/google/gwt/core/ext/GeneratorExt", 2) if I add the gwt-dev dependency, I can do "mvn

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-16 Thread Carlo Alberto Degli Atti
Maybe I'm wrong but I added this dependency to my pom to avoid the compilation problem you were talking about... of course it did work as expected (using maven) *BUT* it caused a very strange behavior in Eclipse... at the beginning I didn't understand the cause (because I had many other problems r

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread Ernesto Reig
Same here. The error happens in all Uibinder templates even if you create a new one. But when you set up a new GWT project, and create a new UiBinder template, it works. I thought that there was some problem in GWT projects with 2.1 version migrating to 2.2, but the thing is that it gives the same

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread skalimer0
I install new Eclipse 3.6 with new GWT 2.2 import my CVS project... and when i try to open an Composite class of my projet in the new GWT Designer 2.2 i have this error : Stack trace: java.lang.NullPointerException at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.getShar

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread jonsm...@gmail.com
Another way to get this is mixing GWT Designer releases Uninstall: GWT Plugin GWT Designer WindowBuilder Then install: GWT Plugin That will clear out pieces of GWT Designer 8.1.1 that are mixed into the GWT 2.2 plugin release. On Mon, Feb 14, 2011 at 7:38 AM, WindowBuilder Support wrote: >

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread skalimer0
OK, thanks i change test to compile for gwt-dev dependency and it's compile without error. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread F. Lancer
Hi, Brice. Try to add 'gwt-dev-2.2.0.jar' to your project and rebuild. pom.xml: com.google.gwt gwt-dev 2.2.0 jar compile You will have "[WARNING] Don't declare gwt-dev as a project dependency. This may introduce complex dependency conflicts" but you pro

Re: migrate GWT 2.1.1 to 2.2 error

2011-02-15 Thread Alex Nederlof
I Got the same problem. I generated a new app with the new webAppCreator and it gives the same error. On Tue, Feb 15, 2011 at 7:46 AM, Brice Beaumesnil wrote: > Hello, i just try GWT 2.2 on my project, i just change my POM file to use > version 2.2 and when i try to compile i have this error : >

migrate GWT 2.1.1 to 2.2 error

2011-02-14 Thread Brice Beaumesnil
Hello, i just try GWT 2.2 on my project, i just change my POM file to use version 2.2 and when i try to compile i have this error : Loading inherited module 'com.google.gwt.user.User' [INFO]Loading inherited module 'com.google.gwt.user.RemoteService' [INFO] [ERROR] Unexpected error whil