Re: [ANN] (Unofficial) GWT 2.8.2-v20191108 release

2019-11-12 Thread Michael Conrad
Is there a release notes link? On 11/10/19 10:19 PM, Peter Donald wrote: GWT is a development toolkit for building and optimizing complex browser-based applications. Its goal is to enable productive development of high-performance web applications without the developer having to be an expert in

Re: Need help debugging 2.0.3 (IE/Chrome - Eclipse Neon)

2020-01-17 Thread Michael Conrad
Suggestions: a) request a dev box or context to host your debugging efforts that you can deploy to on demand. =or= b) setup a special project that can proxy via localhost requests to the API that you can deploy on your own machine that you also have setup to host the front-end you are

Re: GWT - Angular/React Migration & Integration

2020-04-21 Thread Michael Conrad
Don't know if this will help, but you can set the rootpanel for a GWT component using an id, say on a div tag. On 4/20/20 8:00 PM, Thomas wrote: Thanks Jens. If I paraphrase in my words, you would keep the "shell" (menu items etc) and have iFrames for new functionality? Sounds like a

Re: GWT/smartgwt app support with Firefox 74.0

2020-04-02 Thread Michael Conrad
Have you tried setting things up to only generate the chrome permutation along with setting the fallback user-agent permutation being set to chrome? On 4/2/20 2:22 AM, sudarshan rai wrote: we have web application based on gwt along with some smart-gwt components.The app used to be compatible

Re: Is the UI Binder DocType Broken?

2020-04-29 Thread Michael Conrad
I just accessed the URL directly in a browser and was prompted for an XML download. Connection issue of some sort? Reading the header in the XML file it looks like they want you to use 'https://dl-ssl.google.com/download/gwt/DTD/xhtml.ent' instead. And the master copy is at

Re: Strange GWT-RPC bug upgrading from 2.7 to 2.8+

2020-10-06 Thread Michael Conrad
I don't know if this applies to your situation, but we had an issue similar to this (a long time ago) that was caused by shadowing properties from parent classes in child classes. On Tue, Oct 6, 2020 at 2:15 PM lofid...@gmail.com wrote: > If you need a fast solution I would recommend to use

Re: Pbs with Debug GWT application with Eclipse

2020-08-24 Thread Michael Conrad
Modern GWT is debugged in the Browser using "SuperDev Mode". There is an SDM add-on for Eclipse, but I've never used, so can't attest to its effectiveness. On 8/24/20 1:47 PM, Guillen Antonio wrote: Hi all I use the last 2020-06

Re: GWT history with push state

2020-10-03 Thread Michael Conrad
Have you looked at "nalu"? https://github.com/NaluKit/nalu Starting with version 1.1.0 Nalu supports the use of hash less URLs. Not sure about the Domino-Kit stuff On Sat, Oct 3, 2020 at 7:00 AM jhon tonini wrote: > Is possible to use push state in GWT history (Es. /users, /newuser) >

GWT SDM hanging on recompiles?

2020-08-06 Thread Michael Conrad
Greetings everyone. Hopefully someone can tell me what I need to change. When running SDM via Gradle, after so many recompiles, it will stop with something similar to:  GET /recompile/gwt    Job com.newsrx.ButterAdmin_1_7   starting job:

Re: GWT SDM hanging on recompiles?

2020-08-07 Thread Michael Conrad
gt; FWIW We run under JDK8, with no server component from IntelliJ IDE. > > On Fri, Aug 7, 2020 at 6:18 AM Michael Conrad wrote: > > > > Greetings everyone. > > > > Hopefully someone can tell me what I need to change. > > > > When running SDM via Gradle

Fwd: Re: Who are the steering committee members?

2020-06-03 Thread Michael Conrad
Don't know if anyone saw this one.. but it appears the website needs updating? And the steering committe mailing list membership updated or list removed? Forwarded Message Subject:Re: Who are the steering committee members? Date: Tue, 2 Jun 2020 23:01:48 -0700

Re: GWT 2.9 compatiblity with GXT 2.3.1a

2020-06-11 Thread Michael Conrad
Even if other GXT users share their experiences with that framework in combination with GWT 2.9.0, especially considering the old version of GXT specified, unless the GXT team runs tests and validates against 2.9.0 and the GXT team specifically gives the "officially supported" label. You

Re: GWT Super devmode is not working for me

2020-06-11 Thread Michael Conrad
I'm really not sure how well SDM in the much older GWT 2.6.1 works in comparison with most recent stable release of GWT 2.9.0. There do exist SDM plugins for both Eclipse and IntelliJ I believe. On 6/11/20 10:36 AM, ruwan samaraweera wrote: Hi, I'm using gwt since so many years back. To debug

Re: GWT RPC Serialization on web and app server

2020-06-05 Thread Michael Conrad
Does your servlet context path exactly match the request path as sent by the browser? On 6/5/20 3:23 AM, Snehalkumar Rangnenwar wrote: Hey Entlog ,  what was the solution you applied in jmeter to fix the incompatibility issue ? please let us know as well. Thank in advance, skay On

Re: How to migrate gwt 2.8.1 project to gwt 2.9.0 in eclipse?

2020-07-28 Thread Michael Conrad
p\eclipse\fejlesztoi2\war\WEB-INF\lib\javax.xml.soap-api-1.4.0.jar c:\p\eclipse\fejlesztoi2\war\WEB-INF\lib\mail.jar what's next? On Tuesday, July 28, 2020 at 5:46:07 PM UTC+2, Michael Conrad wro

Re: How to migrate gwt 2.8.1 project to gwt 2.9.0 in eclipse?

2020-07-28 Thread Michael Conrad
Use Maven or Gradle to configure the project and let Eclipse import it as a Maven or Gradle project. On Tue, Jul 28, 2020 at 11:42 AM mb user wrote: > Hi, > > After a storage crash, I had to reinstall my development computer. > > Now I have eclipse 4.16 and a gwt 2.8.1 project source imported

Re: Is there any way to use GWT 2.9 with Java 11 using Eclipse GWT plugin?

2020-07-27 Thread Michael Conrad
I use Gradle to configure Eclipse. For JDK11 to be used as if it were JDK8 in Eclipse I have added: sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 if (JavaVersion.current() > JavaVersion.VERSION_1_8) { tasks.withType(JavaCompile) {

Re: Do Google Web Toolkit's touch events support Windows tablets?

2020-07-27 Thread Michael Conrad
you will need to check and see what event is actually generated for the windows 10 tablet in the dom and hook those. On Mon, Jul 27, 2020 at 2:52 PM Andy Langer wrote: > Hi all. Currently working on a webapp using GWT. I currently have a > feature working with touch events on a Canvas. The

Re: java.sql.Date - java.util.Date serialization issue

2020-07-23 Thread Michael Conrad
From experience here, passing java.sql.Date as java.util.Date is opening a barrel of woe. Weird timezone issues start cropping up as java.sql.Date is not supposed to have an hour/minute/second component with meaning and would be better if timezone agnostic like

Re: How to pass a build number to a gwt app?

2020-11-05 Thread Michael Conrad
Any particular reason to not use an annotation processor? Especially as GWT.create is deprecated? On Thu, Nov 5, 2020 at 2:36 AM Joker Joker wrote: > I want to share solution for gradle based project. > This solution allows to get any build's properties on client/server. > > *1) Add to

Re: Java Method Overloading

2021-04-21 Thread Michael Conrad
The error reads like you need to mark one the methods as not exported to JS On Wed, Apr 21, 2021 at 3:45 PM lofid...@gmail.com wrote: > Hi, > > I could confirm your problem. Here is an example: > > >

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Michael Conrad
JDBI3 is the answer to ORMS. It's not an ORM. per-se :-) And the Sql Object component allows strong typing in a much easier way. You use annotations to define sql statements with parameters in interface classes. Or, optionally, sql files. https://jdbi.org/ At work I ended up converting all

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread Michael Conrad
At work we started out with Maven and quickly discovered you couldn't do dependencies to other projects unless they shared a parent POM. Things quickly started becoming unwieldy. Discovered "loosely coupled" projects with Gradle. We haven't looked back. On Wed, Mar 10, 2021 at 10:25 AM Thomas

Re: GWT-apps and OAuth 2.0

2021-03-02 Thread Michael Conrad
I'm using a version of gwt-oauth2 for Google OAUTH logins in this project: https://github.com/CherokeeLanguage/AudioQualityVote. The version of gwt-oauth2 I'm using is at: https://github.com/CherokeeLanguage/gwt-oauth2 On Tue, Mar 2, 2021 at 11:28 AM Luca Morettoni wrote: > Hello, I have a

Re: GWT-apps and OAuth 2.0

2021-03-03 Thread Michael Conrad
Yes. I had to apply a fix to the code for inter-window communications. See: https://github.com/freddyboucher/gwt-oauth2/pull/13 On Wed, Mar 3, 2021 at 6:51 AM Luca Morettoni wrote: > seems forked from the one I posted…  > > On 2 Mar 2021, at 19:18, Michael Conrad wrote: >

Re: GWT-apps and OAuth 2.0

2021-03-04 Thread Michael Conrad
tly the > source code? > Thanks! > > On 3 Mar 2021, at 13:42, Michael Conrad wrote: > > Yes. > > I had to apply a fix to the code for inter-window communications. > > > > -- > Luca Morettoni | http://www.morettoni.net > http://it.linkedin.com/in/morettoni/ | http:

Re: gwt-places annotation processor in Eclipse

2021-02-27 Thread Michael Conrad
I think you need to add the "goomph" plugin to your build.gradle, close the project, then run the shell script below, then open the project and do a clean. - buildscript { - repositories { - //... - }} - dependencies {//... - classpath

Re: GWT 2.9, java 11, tomcat 10.0.2 - standard gwt example having RPC error, 404

2021-02-22 Thread Michael Conrad
It is usually /CONTEXT-AKA-WAR-NAME/URL-PATTERN On Mon, Feb 22, 2021 at 8:49 AM 'Michel Pikkaart' via GWT Users < google-web-toolkit@googlegroups.com> wrote: > Thank you for reading. I tried for serveral days but I cannot find why > this is going wrong. > > I have build a standard Tomcat v10.0.2

Re: Frequent Java runtime crashes when compiling GWT code

2021-08-05 Thread Michael Conrad
Can you try testing with adoptopenjdk? I've had issues with stock openjdk before with odd crashes that don't happen with adoptopenjdk. On Thu, Aug 5, 2021 at 11:28 AM mmo wrote: > We are seeing frequent Java runtime crashes (and I *really* mean often: > about 2 in 3 compilations crash) while

Re: Frequent Java runtime crashes when compiling GWT code

2021-08-06 Thread Michael Conrad
*ouch* I'm not sure where to proceed from here without being able to recreate the issue. On Fri, Aug 6, 2021 at 10:15 AM mmo wrote: > On Thursday, August 5, 2021 at 6:14:25 PM UTC+2 m.conr...@gmail.com wrote: > >> Can you try testing with adoptopenjdk? >> >> I've had issues with stock openjdk

Re: Pbs with GWT + Eclipse + Jetty + Neo4J

2021-10-12 Thread Michael Conrad
You didn't provide the exception stack trace It is needed for anyone to be able to help you. On 10/12/21 1:09 PM, Guillen Antonio wrote: Hi all, I am struggling with a pb using RPC: When I use the service to create and store my objects in my DB (Neo4J) using remote service, all is Fine.

Re: GWT Eclipse plug in

2021-10-08 Thread Michael Conrad
I vote for Gradle. On Fri, Oct 8, 2021 at 6:47 AM Craig Mitchell wrote: > A lot easier then going here > http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/Download.html, > dragging and dropping the install button, and clicking confirm? I really > don't think so. ;-) > > I have

Re: Is there an easy way to use GWT Request Factory?

2022-05-23 Thread Michael Conrad
Take a look at domino-rest: https://github.com/DominoKit/domino-rest You can use a shared POJOs project between the client and server projects with common POJOs annotated with Jackson JSON annotations to transfer data as JSON objects between client and server in a bidirectional fashion. On Mon,

Re: Using JsInterop to create JS object literals

2022-06-28 Thread Michael Conrad
try adding name = "Object" so that it uses an empty javascript Object as the wrapped item. I found this via Googling: @JsType(namespace = JsPackage.GLOBAL, isNative = true, name = "Object") public class MyPluginConfig { @JsProperty public void set(String str); @JsProperty public

Re: Using JsInterop to create JS object literals

2022-06-28 Thread Michael Conrad
Have you tried giving the class a constructor? On Tue, Jun 28, 2022 at 4:04 PM Nicolas Chamouard wrote: > Hello, > > I am using JsInterop to integrate FullCalendar to my GWT application. > As described here https://fullcalendar.io/docs/initialize-globals, I am > supposed to create an object

Re: java.lang.ClassNotFoundException: javax.sql.DataSource when using GWT 2.9.0 + Java 11 combination

2022-06-30 Thread Michael Conrad
I didn't think that java.sql.DataSource is emulated by GWT. Looks like you are pulling in server side only type stuff from somewhere? On Thu, Jun 30, 2022 at 3:30 AM Thomas Broyer wrote: > Didn't legacy devmode also only work with JDK 8? > > On Wednesday, June 29, 2022 at 10:46:30 PM UTC+2 Jens

Re: 'Throwable.HasJavaThrowable' has invalid name '?'.

2022-06-30 Thread Michael Conrad
How many of these libs are you thinking would need converting to JS for the client bundle? At a glance, it really looks like you got a dependency chain fubar. The GWT client code should not have any kind of dependency to java.sql.DataSource as an example. It looks like you are trying to

Re: 'Throwable.HasJavaThrowable' has invalid name '?'.

2022-06-29 Thread Michael Conrad
I see the following in your stack trace. It would probably help to track the issue down if you set the GWT compile to strict. On 6/29/22 13:10, mmo wrote: Ignored 5 units with compilation errors in first pass. -- You received this message because you are subscribed to the Google Groups

Re: Compatibility of GWT 2.10.0 with GXT 2.3.1.a

2022-07-20 Thread Michael Conrad
If you publish your work to a jitpack compatible public git repo and then follow the jitpack.io instructions, you could provide a Maven/Gradle ready dependency for others to use. On 7/20/22 07:36, Ricardo Serathiuk wrote: I have explained in another similar thread the steps:

Re: App Server for GWT 2.10

2022-09-21 Thread Michael Conrad
There is the jakarta migration utility. Supposed to convert wars from javax.* to jakarta.* for deployment. Tomcat also has a special deployment option for such. Another approach to consider, depending on your needs, is spring boot run, maybe inside a docker container. On Wed, Sep 21, 2022 at

Re: Wrapping Javascript library (chart.js) using JSInterop

2022-09-11 Thread Michael Conrad
Check your dependencies. That is an add-on library which must be included explicitly. On Sun, Sep 11, 2022 at 5:10 AM Manas wrote: > Hi All, > > Good Day! > > I'm new in GWT and I'm going through documentation and JSInterop. I'm > facing issues with implementing chart.js using JSInterop. Can

Re: [GWT] [ERROR] Hint: Check that your module inherits 'com.google.gwt.core.Core'

2022-10-07 Thread Michael Conrad
We are using JDK 17 here at the office for builds without any issue. (Gradle setup here). On 10/7/22 08:29, Christian Nzhie wrote: Hello here. I would like to react for this threat. Would at this time (2022) gwt supports java 12? For I am experiencing the error mentioned above. Thanks in

[ERROR] Unexpected internal compiler error | BytecodeSignatureMaker.java:59 | at com.google.gwt.dev.Compiler.main(Compiler.java:113)

2022-08-03 Thread Michael Conrad
Trying to update to gwt 2.10.0, have it mostly figured out, but I'm getting the following stack trace. Any suggestions on what I need to look for? I've already did the exclude module's thing on multiple dependencies to keep gwt 2.8 stuff out of the classpath. There is no GWT servlet stuff.

Re: net.ltgt.gwt.maven and testing in multi-module project structure?

2022-08-03 Thread Michael Conrad
Did you give the shared module a gwt.xml file? Did you inherit in the main project's gwt.xml the shared module's gwt.xml file? On Wed, Aug 3, 2022 at 8:48 PM Slava Imeshev wrote: > Continuing the journey, in this multi-module client/shared/server > structure, is it possible to have the shared

Re: GWT 2.10.0: gradle gwtSuperDev - java.lang.IllegalArgumentException: No selectors

2022-08-10 Thread Michael Conrad
I'm now using the following for GWT in our build.gradle files. I've remove the gwtVersion from the gwt block and switched to using gwtSdk to specify the GWT version. Really not sure why it keeps getting overridden from dependencies, I would have thought that pulling in gwt-dev would have

Re: GWT 2.10.0: gradle gwtSuperDev - java.lang.IllegalArgumentException: No selectors

2022-08-10 Thread Michael Conrad
Hrm... This looks like it could be a side effect from the package name change… Different package, no dependency upgrade detected. -Mike On 8/10/22 07:50, Michael Conrad wrote: I'm now using the following for GWT in our build.gradle files. I've remove the gwtVersion from the gwt block

GWT 2.10.0: gradle gwtSuperDev - java.lang.IllegalArgumentException: No selectors

2022-08-09 Thread Michael Conrad
Meh, I've managed to break my GWT setup again. This time for superdev mode. Looking for suggestions on where the (I assume) Jetty conflict is coming from. Getting the following stacktrace after "Module setup completed" is logged when trying to run "./gradlew subproject:gwtSuperDev"

Re: [ERROR] Unexpected internal compiler error | BytecodeSignatureMaker.java:59 | at com.google.gwt.dev.Compiler.main(Compiler.java:113)

2022-08-09 Thread Michael Conrad
Thanks for the assistance. After poking around a bit, I removed the dependency and switched to using Element2 for websock work. On Fri, Aug 5, 2022 at 11:41 AM Jens wrote: > GWT (gwt-dev) depends on ASM 9.2 which supports up to Java 18. On your > compile classpath you have gwt-websockets which

Re: GWT 2.10.0: gradle gwtSuperDev - java.lang.IllegalArgumentException: No selectors

2022-08-09 Thread Michael Conrad
So, I'm guessing that gretty jetty is leaking into gwt super dev mode somehow. I added the following as a compile time dependency, and superdev mode seems to be working. providedCompile"net.sourceforge.htmlunit:htmlunit:2.55.0" // to get superdev mode working On 8/9/22 10:2

Re: Convert Existing GWT Backend to SPRING BOOT

2022-11-21 Thread Michael Conrad
There are a lot of factors to consider. Are you using gwt-RPC ? You'll need to switch to JSON for data transport. You'll need to use something like DominoKit REST (https://github.com/DominoKit/domino-rest)  for the data transport layer. It would be also be best to split the project into

Re: The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? gwt-servlet.jar

2022-11-16 Thread Michael Conrad
Replace the dated version of the jar as the error message indicates. On 11/16/22 15:39, Christian Nzhie wrote: No one gave a try on this issue? On Thursday, June 7, 2018 at 9:51:33 AM UTC abdenour Bali wrote: Has anybody ran through this error using GWT 2.7

Re: Convert Existing GWT Backend to SPRING BOOT

2022-11-21 Thread Michael Conrad
*Are you using gwt-RPC ?* Yes! we are using GWT-RPC & currently having a single WAR of near about 500mb, having CLIENT-SHARED-SERVER in a same project. You can still have everything in a master parent project that builds the final WAR with all the client JS and SERVER classes in the same war.

Re: Issue with migrating to GWT 2.10

2023-01-19 Thread Michael Conrad
Meh... I just saw the compile options below the empty pic. On 1/19/23 16:04, Michael Conrad wrote: a) Have you tried increasing heap space? b) Are you compiling production in STRICT mode? (Strongly recommended.) c) Are you running SDM in STRICT compile mode? (Strongly recommended.) On 1/19/23

Re: Issue with migrating to GWT 2.10

2023-01-19 Thread Michael Conrad
a) Have you tried increasing heap space? b) Are you compiling production in STRICT mode? (Strongly recommended.) c) Are you running SDM in STRICT compile mode? (Strongly recommended.) On 1/19/23 14:43, Paul Stockley wrote: We are trying to migrate to GWT 2.10 from 2.08. We get this internal

Re: GWT app gets loaded multiple times in Firefox

2023-02-08 Thread Michael Conrad
Thank you very much! On 2/8/23 14:44, Thomas Broyer wrote: It seems to be due to the __gwt_historyFrame: the subsequent requests have initiator=subdocument in the dev tools network panel, and a Sec-Fetch-Dest:iframe request header; if you inspect the iframe in dev tools, you can see the

Re: GWT app gets loaded multiple times in Firefox

2023-02-08 Thread Michael Conrad
We see the same behavior here. I'm convinced it is some sort of FF bug. Why else would a page reload increase the number of times the entry point is entered? Is not a page reload supposed to be the same as opening it up in a new tab while discarding all previous JS states? On 2/8/23 07:02,

Re: GWT RPC call recognized as a Java Method Injection by Fortiweb

2023-07-25 Thread Michael Conrad
Did y'all test DominoKit? It is actively maintained and has a REST module. I'm curious if you did test it what shortcomings you may have run into. On Tuesday, July 25, 2023 at 9:23:53 AM UTC-4 RobW wrote: > We got to a similar point. Looked in depth at moving the GWT front end to > a REST API

Re: Support for Intellj ide

2023-12-15 Thread Michael Conrad
There is a GWT plugin for Ultimate (paid). It is not available for the community version. On Thu, Dec 14, 2023 at 6:45 PM Jvm wrote: > Please is there no gwt support for intellj ide? > > -- > You received this message because you are subscribed to the Google Groups > "GWT Users" group. > To

Re: Is moving away from RPC a good idea?

2024-01-10 Thread Michael Conrad
You should investigate the DominoKit project. They have a much more up-to-date JSON/Jackson-ish implementation. Ref: https://github.com/DominoKit/domino-rest On 1/10/24 11:26, Christian Hebert wrote: Hi guys, I've seen the changes in the new release regarding jakarta servlets, which is

Re: [gwt-contrib] Resolving cycle dependency between gwt-safehtml & gwt-safecss

2020-06-26 Thread Michael Conrad
As CSS and HTML are so closely tied to each other in use, having them as separate modules makes me think of excessive DB normalization (and the potential evils thereof). On 6/25/20 4:43 PM, Matt Davis wrote: +1 to merge. 

[gwt-contrib] Is there a doc which indicates which licenses are acceptable for imported code for use by the JRE Emulation?

2020-06-16 Thread Michael Conrad
Is there a doc which indicates which licenses are acceptable for imported code for use by the JRE Emulation? -- 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

Re: [gwt-contrib] Re: Is there a doc which indicates which licenses are acceptable for imported code for use by the JRE Emulation?

2020-06-16 Thread Michael Conrad
AM UTC-5, Michael Conrad wrote: Is there a doc which indicates which licenses are acceptable for imported code for use by the JRE Emulation? -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this grou

Re: [gwt-contrib] Thurs July 16 2020 GWT community call

2020-07-21 Thread Michael Conrad
How did it go? On 7/15/20 5:02 PM, Colin Alworth wrote: We have a shorter itinerary this week - I'll record a short piece on j2cl-maven-plugin and how to start a project with it, try using pieces from the ecosystem.

Re: [gwt-contrib] Asking for decision on DevMode embedded Jetty support

2021-04-15 Thread Michael Conrad
How would this impact Super Dev Mode in Gradle? We use Gradle with 'org.wisepersist:gwt-gradle-plugin:1.1.8'. On Thu, Apr 15, 2021, 09:56 Paul Robinson wrote: I used the built in Jetty server

Re: [gwt-contrib] Asking for decision on DevMode embedded Jetty support

2021-04-15 Thread Michael Conrad
On Thu, Apr 15, 2021 at 3:04 PM Michael Conrad <mich...@newsrx.com> wrote: How would this impact Super Dev Mode in Gradle? We use Gradle with 'org.wisepersist:gwt-gradle-plugin

Re: [gwt-contrib] GWT 2 Roadmap as it applies to future deprecations

2022-08-06 Thread Michael Conrad
My company is also migrating everything to JDK 17. The less opportunity for bitrot in future versions, the better. On Sat, Aug 6, 2022 at 11:06 AM Manfred Tremmel wrote: > In my company Java 8 was dropped long ago, at the moment the migration > from > Java 11 to 17 is in progress. So from my

Re: [gwt-contrib] GWT 2 Roadmap as it applies to future deprecations

2022-08-16 Thread Michael Conrad
My 2¢ worth  is that it would be good to have a split path with both a branch (GWT 2.10.x) for only security updates and misc fixes as a bug fix only *LTS* and also a current *Stable* branch (GWT 3.x)  that implements new language features and tracks with most recent Java LTS. This is