Re: Dev mode issue after updating to rc1

2016-08-02 Thread Thomas Broyer
Works for me. Could it be that you forgot to override gwt-maven-plugin's dependencies? https://gwt-maven-plugin.github.io/gwt-maven-plugin/user-guide/using-different-gwt-sdk-version.html Also works well with "mvn appengine:devserver_start && mvn gwt:run-codeserver" (and "mvn

Re: GWT 2.8.0 RC1 - InternalCompilerException: Error constructing Java AST

2016-08-02 Thread Thomas Broyer
On Tuesday, August 2, 2016 at 6:35:05 PM UTC+2, Uwe Maurer wrote: > > Great that most dependencies are referenced now. > > You are right, the extra JDT library should not even be on the GWT > classpath. > We use the gwt-gradle-plugin to compile GWT projects with gradle, maybe > our

Dev mode issue after updating to rc1

2016-08-02 Thread zakaria amine
Hi, I tried updating my project here: https://github.com/gwidgets/gwty-leaflet-starter-guide from 2.8.0-beta1 to 2.8.0-rc1, but I got the below issue while trying to run dev mode or deploy to a server. It works fine with beta1. java.util.ServiceConfigurationError:

Re: [gwt-contrib] Re: Experimental release of Elemental2

2016-08-02 Thread 'Roberto Lublinerman' via GWT Contributors
Looking at the elemental code that uses a lambda which will not be EventHandler but a JsFunction. Could you try with an anonymous EventHandler instead? On Tue, Aug 2, 2016 at 1:51 AM, Steve Andrews wrote: > I've created a quick test project and put it at >

Re: GWT 2.8.0 RC1 - InternalCompilerException: Error constructing Java AST

2016-08-02 Thread Uwe Maurer
Great that most dependencies are referenced now. You are right, the extra JDT library should not even be on the GWT classpath. We use the gwt-gradle-plugin to compile GWT projects with gradle, maybe our configuration is not correct there. On Tuesday, August 2, 2016 at 6:03:37 PM UTC+2,

Re: GWT 2.8.0 RC1 - InternalCompilerException: Error constructing Java AST

2016-08-02 Thread Thomas Broyer
On Tuesday, August 2, 2016 at 5:50:22 PM UTC+2, Uwe Maurer wrote: > > Thanks for the hint. Yes, the problem was that GWT SDK duplicates these > JDT classes instead of depending on the corresponding library. > JDT is the only dependency that's still bundled into GWT, and this is the case

Re: GWT 2.8.0 RC1 - InternalCompilerException: Error constructing Java AST

2016-08-02 Thread Uwe Maurer
Thanks for the hint. Yes, the problem was that GWT SDK duplicates these JDT classes instead of depending on the corresponding library. Then gradle could not resolve this version conflict and kept the old JDT. Forcing a higher version fixed it. On Tuesday, August 2, 2016 at 4:35:37 PM UTC+2,

Re: gwt developer plugin can't be installed

2016-08-02 Thread Jens
Either downgrade your browser to an older version which still supports the GWT browser plugin or use GWT SuperDevMode which does not require a browser plugin at all. You can search this group, there are a lot of threads about that topic. -- J. -- You received this message because you are

Re: js is broken after I add components to top level GWT class

2016-08-02 Thread Jens
The code tries to call a function / read a property of an undefined value. So in Java terms its a classic NullPointerException, so your code most likely has a bug. -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this

js is broken after I add components to top level GWT class

2016-08-02 Thread Qbyte Consulting
I've added a new display panel type component to a GWT app and now there is a error on the js console as below. The Java compiles fine and gwtc compiles without error. What can be wrong? regards, John [java] Aug 02, 2016 3:32:42 PM java.util.prefs.WindowsPreferences [java]

redirect GWT application URL With out # sign..

2016-08-02 Thread Gaurav VARSHNEY
http://abcc.com/#master replace http://abcc.com/master -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post

Re: GWT Material - Video tutorial #1

2016-08-02 Thread Gaurav VARSHNEY
> > please suggestion > GWT Build Project Remove # Token .. ex : http://abc.com/#kkk replace http://abc.com/kkk > > -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send

gwt developer plugin can't be installed

2016-08-02 Thread 411129362
i can't install gwt developer plugin for chrome now,when i click the button,it says it's lost or be deleted? how can i debug gwt now? anyone helps me? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop

Re: GWT 2.8.0 RC1 - InternalCompilerException: Error constructing Java AST

2016-08-02 Thread Jens
*Caused by: java.lang.NoSuchMethodError: org.eclipse.jdt.internal.compiler.lookup.MethodBinding.isDefaultMethod()Z* Check your dependencies. Looks like you have an old JDT on class path and GWT requires a newer one. -- J. -- You received this message because you are subscribed to the Google

GWT 2.8.0 RC1 - InternalCompilerException: Error constructing Java AST

2016-08-02 Thread Uwe Maurer
Hi, I tried GWT 2.8.0 RC1 and get this error. Any ideas? Compiling... [ERROR] An internal compiler exception occurred com.google.gwt.dev.jjs.InternalCompilerException: Error constructing Java AST at com.google.gwt.dev.jjs.impl.GwtAstBuilder.translateException(GwtAstBuilder.java:3886) at

Re: 2.8.0 RC1 is here!

2016-08-02 Thread P.G.Taboada
Got my application compiled and running, just needed to update a few dependencies. Since I am using a report generator, I have the JDT compiler on my classpath, solved it by adding the exact same version that got bundled in gwt-dev into my app. Interestingly I am having troubles with server

[gwt-contrib] Re: GWT 2.8.0 RC1 is here!

2016-08-02 Thread Frank Taffelt
thanks for spotting in the right direction. yes i had an exclusion for the xerces in another dependency. On Tuesday, August 2, 2016 at 2:56:19 AM UTC+2, Thomas Broyer wrote: > > Do you somehow exclude xerces? > Here's dependency:tree excerpt from the "dynatablerf" sample; see how it > inherits

Re: [gwt-contrib] Re: Experimental release of Elemental2

2016-08-02 Thread Steve Andrews
I've created a quick test project and put it at https://github.com/steveandrews01/JsInteropTest The click listener only works if compiled with the flag set. If I run it without the flag and inspect the DOM in Chrome then the event listener is not attached to the button. (Changing the flag

Re: Cascading GWT Application ?

2016-08-02 Thread Pierre Mineaud
Hey there. I come back there to give you my final approach of this problem. I create a Main Module who inherits of all my needed modules and specify my onlyone entry-point. It looks like that : Java side I

Re: GWT 2.8 RC1 - Could not merge 2 super sourced packages

2016-08-02 Thread Ali Jalal
I compared emulated classes in 'java.util' and 'java.beans' packages of GWT and GWTx and I found *java.util.Locale.java* which emulated in both packages. By removing java.util.Locale.java from emulated classes of GWTx, problem solved. Thanks Thomas. On Tue, Aug 2, 2016 at 9:44 AM, Ali Jalal

Re: GWT 2.8 RC1 - Could not merge 2 super sourced packages

2016-08-02 Thread Ali Jalal
Hi, I compiled project with -strict and almost same errors logged (I think GWT compiler does not merge 2 super-source packages like 'java.util' and 'java.beans'). Here is the stacktrace: [java] Compiling module com.test.sample.Sample [java]Tracing compile failure path for type