Hi All,
We have multiple product developed primarily using GWT and currently used
by our end customers.
Wanted to know the road map of GWT. I got some unofficial update that
google is moving there product which is developed in GWT to some other new
technology. Is it true?
What is long term p
Thank you!
On Tuesday, November 13, 2018 at 5:39:28 PM UTC-8, Goktug Gokdogan wrote:
>
> Dear GWTers!
>
> We are happy to announce that we have opened up J2CL repository for
> general access:
> http://github.com/google/j2cl
>
> Please see the README for details and instructions.
>
> I also would
Thanks!
On Tue, 13 Nov 2018 at 22:39 'Goktug Gokdogan' via GWT Users <
google-web-toolkit@googlegroups.com> wrote:
> Dear GWTers!
>
> We are happy to announce that we have opened up J2CL repository for
> general access:
> http://github.com/google/j2cl
>
> Please see the README for details and
Dear GWTers!
We are happy to announce that we have opened up J2CL repository for general
access:
http://github.com/google/j2cl
Please see the README for details and instructions.
I also would like to use this opportunity to thank all Googlers who
contributed over the years and made this happen.
Hi,
I do not know about version 2.8, but for 2.6 we did next:
- put value "PRETTY" in the pom.xml for gwt plugin
- put next loggin settings in the application gwt config file
as result we had a proper class names and line numbers in the stack-trace
massages
понеділок, 5 листопада
> On 13 Nov 2018, at 10:58, Thomas Broyer wrote:
>
> remove scope=provided and classifier=sources from test-shared
> remove the jaxb dependency from test-server
> possibly add the jaxb dependency with classifier=sources in test-client
>
Thanks Thomas, it works (with this changes):
Added jaxb
You're doing your dependencies backwards actually.
- test-shared does depend on jaxb annotations, but not their sources.
Actually, with Java 11, which no longer ships jaxb, it doesn't even compile.
- test-server doesn't directly depend on jaxb annotations (AFAICT), and
could have th
provided dependencies are not transitive. you need to add the dependency to
the client package as well.
Am Montag, 12. November 2018 18:51:03 UTC+1 schrieb Luca Morettoni:
>
> Hello, I’m using the Thomas Broyer fantastic plugin[1] for maven to split
> my project into multiple subproject (client,
By just adding sources to jaxb it will not work.
You need to have these sources in a gwt source folder. so it javax.xml.bind
package must be declared as a source folder in a gwt.xml files before the
GWT compiler picks it up to cross compile.
I don't think that adding the package in you module.gw