Re: Deploy to Google App Engine (GAE)

2023-12-19 Thread Craig Mitchell
No worries not posting the POMs Tim.

The bit I'm struggling with, the old Java 8 version had its own GAE 
server.  So I would run that, and a GWT Code Server.  Easy!

*btw:* I'm talking about GAE Standard.  GAE Flexible you can do whatever 
you want, but that's more work and more expensive.

Now with the upgrade to Java17 on GAE, there isn't a web server included 
anymore.  It's up to you to supply one.  I would assume when you deploy it, 
it doesn't actually use your server, but what setup is GAE expecting for 
the deploy?

I see there is a SpringBoot GAE example, so it might be easier to use that, 
and get GWT to work with SpringBoot.  Not sure.  Very interested to hear 
what you're doing.

Thanks!

On Wednesday 20 December 2023 at 1:51:55 pm UTC+11 tim_mac...@yahoo.co.uk 
wrote:

> For some years I've been deploying GWT 2.8.2 to GAE with Maven & Google 
> Cloud Tools. 
> I now find GAE is not supporting Java 8 after January, so currently 
> upgrading (rather slowly). 
> There are 4 long POM files,  probably better to mail them then post a 
> distilled version here ?
>
> On Sunday, December 17, 2023 at 5:20:56 AM UTC Craig Mitchell wrote:
>
>> Hi,
>>
>> The instructions here 
>> https://www.gwtproject.org/doc/latest/tutorial/appengine.html are no 
>> longer valid, as the Google Plugin for Eclipse is now dead (Google no 
>> longer supports Java 1.8, and the Google Plugin for Eclipse doesn't support 
>> any Eclipse versions that support anything after Java 1.8).  Ref:  
>> https://github.com/GoogleCloudPlatform/google-cloud-eclipse/issues/3710
>>
>> The new approach with GAE is to use Maven or Gradle with Google Cloud 
>> Tools.
>>
>> I've been struggling to work out how this is supposed to happen.  It 
>> looks like we now have to provide our own Web Server for GAE, but can we 
>> use the Jetty server that GWT uses for development?  I assume the deploy 
>> build would not include the Jetty web server?
>>
>> If anyone has deployed a GWT app to GAE with Maven and the new Google 
>> Cloud Tools, it would be great if you could give high level instructions on 
>> how it's all supposed to fit together.
>>
>> An example Maven POM file with both the Google Cloud Tools, and GWT would 
>> be even better.  
>>
>> Thanks!
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/2a454300-0517-400e-8e5c-9754f9d4f1f8n%40googlegroups.com.


Re: Migration from 2.7.0 to 2.9.0

2023-12-19 Thread Colin Alworth
Can you share the complete build log? At a guess, there is some classpath 
mismatch, mixing parts of GWT 2.7 with 2.9 - the Core module is always 
included as an inherits for every module, even if that module is empty, so 
this suggests an earlier error that prevented that module from working, or 
prevented the compiler from finding it.

On Tuesday, December 19, 2023 at 8:51:25 PM UTC-6 kua...@gmail.com wrote:

> Hello GWT Users,
>
> I'm trying to migrate very old project from GWT 2.7.0 to GWT 2.9.0
>
> Project build with Gradle.
>
> Everything is working as expected for GWT 2.7.0, but when I update to GWT 
> 2.9.0
> build failed with message "[ERROR] Hint: Check that your module inherits 
> 'com.google.gwt.core.Core' either directly or indirectly (most often) by 
> inheriting module `com.google.gwt.user.User`"
>
> I've simply changed version in "build.gradle".
> Java compilation succeeded and even window with Dev mode launcher appeared 
> on the screen.
>
> I think it is some misconfiguration. Maybe something changed in GWT 2.9.0 
> configuration?
>
> Any ideas what am I missing?
>
> Alexey Kuznetsov
>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/77311ac7-5fbd-40c5-abe3-8404dc89d4d3n%40googlegroups.com.


Re: Deploy to Google App Engine (GAE)

2023-12-19 Thread 'tim_mac...@yahoo.co.uk' via GWT Users
For some years I've been deploying GWT 2.8.2 to GAE with Maven & Google 
Cloud Tools. 
I now find GAE is not supporting Java 8 after January, so currently 
upgrading (rather slowly). 
There are 4 long POM files,  probably better to mail them then post a 
distilled version here ?

On Sunday, December 17, 2023 at 5:20:56 AM UTC Craig Mitchell wrote:

> Hi,
>
> The instructions here 
> https://www.gwtproject.org/doc/latest/tutorial/appengine.html are no 
> longer valid, as the Google Plugin for Eclipse is now dead (Google no 
> longer supports Java 1.8, and the Google Plugin for Eclipse doesn't support 
> any Eclipse versions that support anything after Java 1.8).  Ref:  
> https://github.com/GoogleCloudPlatform/google-cloud-eclipse/issues/3710
>
> The new approach with GAE is to use Maven or Gradle with Google Cloud 
> Tools.
>
> I've been struggling to work out how this is supposed to happen.  It looks 
> like we now have to provide our own Web Server for GAE, but can we use the 
> Jetty server that GWT uses for development?  I assume the deploy build 
> would not include the Jetty web server?
>
> If anyone has deployed a GWT app to GAE with Maven and the new Google 
> Cloud Tools, it would be great if you could give high level instructions on 
> how it's all supposed to fit together.
>
> An example Maven POM file with both the Google Cloud Tools, and GWT would 
> be even better.  
>
> Thanks!
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/bc2df8e1-6a57-42c6-8f5b-447ee279dc4fn%40googlegroups.com.


Migration from 2.7.0 to 2.9.0

2023-12-19 Thread Alexey Kuznetsov
Hello GWT Users,

I'm trying to migrate very old project from GWT 2.7.0 to GWT 2.9.0

Project build with Gradle.

Everything is working as expected for GWT 2.7.0, but when I update to GWT 
2.9.0
build failed with message "[ERROR] Hint: Check that your module inherits 
'com.google.gwt.core.Core' either directly or indirectly (most often) by 
inheriting module `com.google.gwt.user.User`"

I've simply changed version in "build.gradle".
Java compilation succeeded and even window with Dev mode launcher appeared 
on the screen.

I think it is some misconfiguration. Maybe something changed in GWT 2.9.0 
configuration?

Any ideas what am I missing?

Alexey Kuznetsov

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/a9d57b5d-f7f6-4eaf-a51a-6d2a75af95c7n%40googlegroups.com.


Re: Digest for google-web-toolkit@googlegroups.com - 1 update in 1 topic

2023-12-19 Thread 'Tim Macpherson' via GWT Users
 For some years I've been deploying GWT 2.8.2 to GAE with Maven & Google Cloud 
Tools. I now find GAE is not supporting Java 8 after January, so I'm currently 
upgrading (rather slowly). There are 4 quite long POMs,  not sure if here is 
the best place to post them.
On Sunday, 17 December 2023 at 13:01:19 GMT, 
google-web-toolkit@googlegroups.com  
wrote:  
 
   
|google-web-toolkit@googlegroups.com   |  Google Groups  ||

Topic digest 
  View all topics 
   -   Deploy to Google App Engine (GAE) - 1 Update 
Deploy to Google App Engine (GAE)   
|   Craig Mitchell : Dec 16 09:20PM -0800  

 Hi,
 
The instructions 
here https://www.gwtproject.org/doc/latest/tutorial/appengine.html are no 
longer valid, as the Google Plugin for Eclipse is now dead (Google no 
longer supports Java 1.8, and the Google Plugin for Eclipse doesn't support 
any Eclipse versions that support anything after Java 1.8). 
Ref: https://github.com/GoogleCloudPlatform/google-cloud-eclipse/issues/3710
 
The new approach with GAE is to use Maven or Gradle with Google Cloud Tools.
 
I've been struggling to work out how this is supposed to happen. It looks 
like we now have to provide our own Web Server for GAE, but can we use the 
Jetty server that GWT uses for development? I assume the deploy build 
would not include the Jetty web server?
 
If anyone has deployed a GWT app to GAE with Maven and the new Google Cloud 
Tools, it would be great if you could give high level instructions on how 
it's all supposed to fit together.
 
An example Maven POM file with both the Google Cloud Tools, and GWT would 
be even better. 
 
Thanks!
  |

  Back to top
|  You received this digest because you're subscribed to updates for this 
group. You can change your settings on the group membership page.
 To unsubscribe from this group and stop receiving emails from it send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.  |

   

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/779180981.309564.1702905331477%40mail.yahoo.com.