Re: GWT Eclipse Plugin 4 Problem

2024-01-31 Thread Colin Alworth
There is a pending patch for this at https://github.com/gwt-plugins/gwt-eclipse-plugin/pull/475. You should be able to pull and build this to get working again on the very latest Eclipse versions - and if you do, leave a comment, a code review, etc, and we can get this merged more expediently.

Re: GWT Eclipse Plugin 4 Problem

2024-01-31 Thread Fred Andrews
No response to this man's issue after 6 weeks and I just hit the same problem. This is shocking. The plugin cannot be installed. Is GWT a dead product? On Monday, December 11, 2023 at 2:12:30 PM UTC-6 Bob Lacatena wrote: > Hey. My coworker and I ran into trouble installing the GWT plugin

Re: gwt-maven-springboot-archetype updated ...

2024-01-31 Thread Craig Mitchell
Thank you! Working great now (quotes were important).  [image: Screen.png] On Thursday 1 February 2024 at 6:38:47 am UTC+11 Frank Hossfeld wrote: > Mmmh, it might be worth adding this information to the archetype docs. > > -- You received this message because you are subscribed to the

Re: gwt-maven-springboot-archetype updated ...

2024-01-31 Thread 'Frank Hossfeld' via GWT Users
Mmmh, it might be worth adding this information to the archetype docs. -- 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: gwt-maven-springboot-archetype updated ...

2024-01-31 Thread 'Frank Hossfeld' via GWT Users
Mmmh, might be worse adding this information to the archetype read me. Frank Hossfeld schrieb am Mittwoch, 31. Januar 2024 um 20:35:40 UTC+1: > Thanks, I am usually using the Spring Boot run configuration from > IntelliJ. This works without additional parameters. > > bbe...@gmail.com schrieb am

Re: gwt-maven-springboot-archetype updated ...

2024-01-31 Thread 'Frank Hossfeld' via GWT Users
Thanks, I am usually using the Spring Boot run configuration from IntelliJ. This works without additional parameters. bbe...@gmail.com schrieb am Mittwoch, 31. Januar 2024 um 19:12:22 UTC+1: > The problem is that spring-boot:run is going to launch another Java > process for you application, so

Re: gwt-maven-springboot-archetype updated ...

2024-01-31 Thread bbe...@gmail.com
The problem is that spring-boot:run is going to launch another Java process for you application, so mvnDebug is attached to the first Maven process, not your application. You will need to execute spring-boot:run passing the config to enable remote debugging: mvn spring-boot:run -pl

Re: gwt-maven-springboot-archetype updated ...

2024-01-31 Thread Craig Mitchell
Hi, I'm able to debug the GWT client okay (in Chrome). However, debugging the SpringBoot server in IntelliJ isn't working. I already have the code server running, and then I start the server with: mvnDebug spring-boot:run -pl mywebapp-server -am The server then waits for the debugger to