Re: 2.8.0 RC1 is here!

2016-08-07 Thread Thomas Broyer
Check your classpath, you must be downgrading the servlet API to a 2.x version: http://docs.oracle.com/javaee/7/api/javax/servlet/http/HttpServletResponse.html#getHeader-java.lang.String- -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Re: 2.8.0 RC1 is here!

2016-08-07 Thread dflorey
I just installed 2.8 rc1 and try to run my project. I'm using Eclipse and try to start the SuperDevMode without any changes to my previous 2.7 config. I'm getting: 2016-08-07 20:47:28.033:WARN:oejs.ServletHandler:qtp1910695180-49: Error for /recompile-requester/ultradoc

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

2016-08-04 Thread Mark Duesbury
Problem solved.. I had the configuration in the wrong place. Should be... prepare-package compile -Xms2g -Xmx4g -Xss1024k desktop.html ${project.build.directory}/${project.build.finalName} true true true INFO It seems 2.8 is less forgiving

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

2016-08-04 Thread Mark Duesbury
Sorry should have mentioned... gwtversion is set to... 2.8.0-rc1 But because there was not a 2.8.0-rc1 version of the gwt-maven-plugin i changed the version of the plugin back to 2.8.0-beta1 (should have changed it to 2.8.0-SNAPSHOT) I just changed the version of the gwt-maven-plugin to

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

2016-08-04 Thread 'Roberto Lublinerman' via GWT Contributors
The issue was addressed post beta 1. Please use the 2.8rc1 instead. On Thu, Aug 4, 2016 at 6:57 PM, Mark Duesbury wrote: > Just tried with -Xmx8g (running on 16gb Macbook Pro) > > [ERROR] Exception in thread "main" java.lang.OutOfMemoryError: GC overhead > limit

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

2016-08-04 Thread 'Roberto Lublinerman' via GWT Contributors
You might need to increase the heap size. JDT still uses more memory under Java 8 which is the source level that is currently supported by GWT (try -Xmx3g or -Xmx4g). On Thu, Aug 4, 2016 at 11:27 AM, Mark Duesbury wrote: > Hi .. Thanks for the rc... > > I have been

Re: 2.8.0 RC1 is here!

2016-08-04 Thread Frank
I fixed this by removing the reference to Logger in my own Level class. Now all seems to be working ok :-) Op woensdag 3 augustus 2016 16:46:15 UTC+2 schreef Frank: > > Hi Jens, > > Thanks for the quick response. > > I will try to explain what I needed, and what I did... > > > I needed to have

Re: 2.8.0 RC1 is here!

2016-08-04 Thread Frank
I managed to fix this issue by removing dependencies to Logger from my own Level class. Now I have the following issue. When I try to run my application I get the following : run: [java] Super Dev Mode starting up [java]workDir:

Re: 2.8.0 RC1 is here!

2016-08-03 Thread Frank
Hi Jens, Thanks for the quick response. I will try to explain what I needed, and what I did... I needed to have the following loglevels : ERROR and EXCEPTION. I asked this I think in this Google Group when I needed it but the only reply I got was that this was not possible. In the end I

Re: 2.8.0 RC1 is here!

2016-08-03 Thread Jens
> Why is this the case ? > It relies on internal API and because of this it can not be compiled using javac (ConsoleLogger calls Throwable.getBackingJsObject() which does not exist in JRE so you can not javac the file). The super sourced code is still present in

Re: 2.8.0 RC1 is here!

2016-08-03 Thread Frank
Why is javaemul.internal.ConsoleLogger removed from gwt-user.jar. I did some stuff with supercode and creating my own java.util.logging.SimpleConsoleLogHandler to achieve logs being send over a rest service to have serverside logging with a .NET server. In this SimpleConsoleLogHandler I make

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: 2.8.0 RC1 is here!

2016-08-01 Thread cloud450
> > > FWIW, our project at work still compiles with JDK 7 and GIN 1.5.0; I just > updated GWT to 2.8.0-rc1 and Guava to 20.0-SNAPSHOT (note: I haven't tested > SuperDevMode yet, but I'm rather confident) > If I update to GIN 2.1.2 (which uses its custom classloader), than it > fails with: >

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

2016-08-01 Thread Thomas Broyer
This is https://github.com/gwtproject/gwt/issues/9382 and is a bug in gwt-jackson's POM. -- 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

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

2016-08-01 Thread Andrei Preda
Hi and thank you for the RC1, I have a problem that I can't wrap my head around, because I don't know if it is a problem with the RC1 or with the gwtjackson lib? Everything works fine with gwt2.8.0-beta1 but if I try to compile with RC1 the following is logged: Computing all possible rebind

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

2016-08-01 Thread Frank Taffelt
some steps further: [INFO] \- com.google.gwt:gwt-dev:jar:2.8.0-rc1:compile [INFO]+- com.google.code.gson:gson:jar:2.6.2:compile [INFO]+- org.ow2.asm:asm:jar:5.0.3:compile [INFO]+- org.ow2.asm:asm-util:jar:5.0.3:compile [INFO]| \- org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO]|

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Harald Pehl
Thanks Thomas. As always you pointed me in the right direction. I've got a dependency to com.gwtplatform::gwtp-all which depends on javax.servlet::servlet-api::2.5. Adding an fixes this and SuperDevMode is running again! Am Freitag, 29. Juli 2016 18:06:04 UTC+2 schrieb Thomas Broyer: > >

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Thomas Broyer
Check your dependencies, you may have Servlets API pre-3.0 (which introduced this method); either coming before Servlets API 3.1 in the classpath (they don't have the same artifactId so they could both be present), or in place of 3.1 (if javax.servlet:javax.servlet-api is somehow excluded).

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Harald Pehl
Running SuperDevMode using GWT 2.8.0-rc1 and the GWT Maven Plugin from Thomas (net.ltgt.gwt.maven:gwt-maven-plugin:1.0-rc-6:devmode) throws an exception. Not sure whether it's related to RC1 or the maven plugin. [INFO] The code server is ready at http://127.0.0.1:9876/ [WARNING] Exception in

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Thomas Broyer
No, this is another issue; once you updated to Java 8, but still due to the custom classloader. On Friday, July 29, 2016 at 4:37:12 PM UTC+2, Frank Hossfeld wrote: > > Does using the compiler flag: > > -setProperty gin.classloading.exceptedPackages=com.google.gwt.core.client, >

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

2016-07-29 Thread Thomas Broyer
I'd start with double-checking your dependencies. With 2.8 from the Central repository, most dependencies that used to be bundled into the gwt-user and gwt-dev JARs have now been unbundled and properly declared as Maven dependencies, so you may have had exclusions that now need to be removed. I

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

2016-07-29 Thread Manuel Carrasco MoƱino
Seems like gwt-dev is not in your classpath El vie., 29 jul. 2016 a las 16:27, Frank Taffelt (< frank.taff...@interface-projects.de>) escribiĆ³: > thanks for the rc. > > updated a project coming from 2.7.0. the project is mainly based on thomas > gwt maven-archetypes. > > the following build

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Frank Hossfeld
Does using the compiler flag: -setProperty gin.classloading.exceptedPackages=com.google.gwt.core.client, com.google.gwt.core.client.impl as mentioned in the workaround solve this issue. Am Freitag, 29. Juli 2016 16:26:14 UTC+2 schrieb Thomas Broyer: > > > > On Friday, July 29, 2016 at

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

2016-07-29 Thread Frank Taffelt
thanks for the rc. updated a project coming from 2.7.0. the project is mainly based on thomas gwt maven-archetypes. the following build error is dumped doing an mvn package on the gwt-compilation step: [INFO] [WARN] Line 39 column 7: encountered "(". Was expecting one of:

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Thomas Broyer
On Friday, July 29, 2016 at 1:41:33 PM UTC+2, kimi wrote: > > ok, didn"t know gin work with jdk7, just saw this in the release note : > https://github.com/gwtproject/gwt/issues/9311 > i'm on jdk7, guava18 and gin 2. > The thing with GIN is that it uses a custom ClassLoader to be able to "read"

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Jens
> ok, didn"t know gin work with jdk7, just saw this in the release note : > https://github.com/gwtproject/gwt/issues/9311 > i'm on jdk7, guava18 and gin 2. > Then Guava 18 is most likely blocking you, and you would need to use Guava 20 SNAPSHOT. Guava 18/19 use some private GWT API that does

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

2016-07-29 Thread dflorey
Very nice indeed! Now I'm just waiting for App Engine to support Java 8, then I can start migrating our codebase, hurray! Thanks! On Friday, July 29, 2016 at 7:39:39 AM UTC+2, Daniel Kurka wrote: > > Hi all, > > I just build the GWT 2.8.0 RC1 and pushed it to maven central. The > complete SDK

Re: 2.8.0 RC1 is here!

2016-07-29 Thread 'kim young ill' via GWT Users
ok, didn"t know gin work with jdk7, just saw this in the release note : https://github.com/gwtproject/gwt/issues/9311 i'm on jdk7, guava18 and gin 2. On Fri, Jul 29, 2016 at 12:20 PM, Thomas Broyer wrote: > > > On Friday, July 29, 2016 at 12:16:30 PM UTC+2, Juan Pablo

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

2016-07-29 Thread Ignacio Baca Moreno-Torres
Hi Kirill, this is a known limitation of the mojo plugin, you really should try this one https://github.com/tbroyer/gwt-maven-plugin/ which solves most of the limitation of the mojo plugin. In any case, mojo plugin will be released as 2.8.0-rc1 in the next days. On Friday, July 29, 2016 at

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Thomas Broyer
On Friday, July 29, 2016 at 12:16:30 PM UTC+2, Juan Pablo Gardella wrote: > > You could replace it with dagger2. > +1 Easier said than done though. For example, we have a lot of factories, and moving them to AutoFactory is not straightforward either (we have many factories able to provide

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Thomas Broyer
On Friday, July 29, 2016 at 11:23:41 AM UTC+2, kimi wrote: > > nice, thanx for the great work. > > the only blocking point for me now is GIN. > GIN or Java 7? Because GIN with Java 8 works (in our project I didn't even need the workaround) No, what's blocking many of use is currently Guava

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Juan Pablo Gardella
You could replace it with dagger2. On Fri, 29 Jul 2016 at 06:51 Jens wrote: > > the only blocking point for me now is GIN. >> > > Why its blocking? > > -- J. > > -- > You received this message because you are subscribed to the Google Groups > "GWT Users" group. > To

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

2016-07-29 Thread Julien Dramaix
The release note is now available on the web site: http://www.gwtproject.org/release-notes.html#Release_Notes_2_8_0_RC1 - Julien On Fri, Jul 29, 2016 at 11:19 AM Jens wrote: > You should file a bug on the maven plugin issue tracker >

Re: 2.8.0 RC1 is here!

2016-07-29 Thread Jens
> the only blocking point for me now is GIN. > Why its blocking? -- J. -- 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

Re: 2.8.0 RC1 is here!

2016-07-29 Thread 'kim young ill' via GWT Users
nice, thanx for the great work. the only blocking point for me now is GIN. On Fri, Jul 29, 2016 at 7:40 AM, 'Daniel Kurka' via GWT Users < google-web-toolkit@googlegroups.com> wrote: > Hi all, > > I just build the GWT 2.8.0 RC1 and pushed it to maven central. The > complete SDK is also

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

2016-07-29 Thread Jens
You should file a bug on the maven plugin issue tracker https://github.com/gwt-maven-plugin/gwt-maven-plugin -- J. -- 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

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

2016-07-29 Thread Kirill Prazdnikov
Hi Daniel, Thanks for the release. The maven plugin still requires (and downloads) the BETA version, even if my project does not have BETA in configuration. There is a workaround, Thomas kindly pointed to it, but. Is it possible to update the plugin ? Thanks On Friday, July 29, 2016 at

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

2016-07-29 Thread Kirill Prazdnikov
My IDEA works perfectly with GWT master. On Friday, July 29, 2016 at 9:17:05 AM UTC+3, Kay Pac wrote: > > That is fantastic! Thanks to you and the rest of the team for your hard > work. I am having trouble with IDE support, but that is related to the > product (IntellIJ) and not GWT itself > >

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

2016-07-29 Thread Sri Harsha Chilakapati
It's working for me in IntelliJ Ultimate. The community edition does not support the GWT. On Friday, 29 July 2016 11:47:05 UTC+5:30, Kay Pac wrote: > > That is fantastic! Thanks to you and the rest of the team for your hard > work. I am having trouble with IDE support, but that is related to

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

2016-07-29 Thread Kay Pac
That is fantastic! Thanks to you and the rest of the team for your hard work. I am having trouble with IDE support, but that is related to the product (IntellIJ) and not GWT itself Awesome! On Thursday, July 28, 2016 at 10:39:39 PM UTC-7, Daniel Kurka wrote: > > Hi all, > > I just build the

2.8.0 RC1 is here!

2016-07-28 Thread 'Daniel Kurka' via GWT Users
Hi all, I just build the GWT 2.8.0 RC1 and pushed it to maven central. The complete SDK is also available from here . Please start testing and let us know if you run into any trouble. You can either reply to this thread on gwt-contrib

[gwt-contrib] GWT 2.8.0 RC1 is here!

2016-07-28 Thread 'Daniel Kurka' via GWT Contributors
Hi all, I just build the GWT 2.8.0 RC1 and pushed it to maven central. The complete SDK is also available from here . Please start testing and let us know if you run into any trouble and file bugs . We are planing to release