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

2020-08-31 Thread Shahram Zadeh
Yeah, we realized that chrome debugger and SDBG are the same, but it's a different world when your debug session is like a desktop application, you don't notice it's a Web application. I checked the video how to separate the projects but unfortunately we cannot move to maven. We are very happy

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

2020-08-31 Thread lofid...@gmail.com
... and for development: it is wise to separate your GWT UI project from your server part: - Separate the Maven modules: one for server and one for client GWT UI, don't mixed both modules. - Develop both modules independently, mock your server to be able to make a fast turn around

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

2020-08-31 Thread lofid...@gmail.com
Hi, great to hear that you managed to move to GWT 2.9... AFAIK, SDBG is implemented based on Chrome, so actually it is the same whether you use Chrome or SDBG in Eclipse, only it looks more integrated in Eclipse  shahra...@gmail.com schrieb am Montag, 31. August 2020 um 03:25:08 UTC+2: >

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

2020-08-30 Thread Shahram Zadeh
Thanks Thomas for your prompt response, I loaded the old project and added the old jars one by one and after apache commons it started working, I mean it stopped using the gwt-dev.jar libraries. Now I'm able to load the application with 1) Eclipse plugin, using the integrated Server

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

2020-08-28 Thread Thomas Broyer
That one's "easy": don't use the embedded Jetty of DevMode; run your own servlet container instead, along with either DevMode in -noserver mode, or CodeServer. On Thursday, August 27, 2020 at 8:30:45 PM UTC+2, Shahram Zadeh wrote: > > after a long time and hard work we were able to make it work

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

2020-08-27 Thread Shahram Zadeh
after a long time and hard work we were able to make it work up to the successful compilation, now there is a conflict between the integrated apache xerces in gwt-dev.jar and java 8. is there any way to force the GWT in dev mode not to use tools in the gwt-dev.jar? any help would be greatly

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

2020-08-08 Thread Frank Hossfeld
Use this to generate a multi module artifact: https://github.com/tbroyer/gwt-maven-archetypes shahra...@gmail.com schrieb am Freitag, 7. August 2020 um 18:23:52

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

2020-08-07 Thread Shahram Zadeh
is there any documentation for how to set it up, we are not maven oriented. I appreciate a link or document... On Thu, Aug 6, 2020 at 2:57 PM lofid...@gmail.com wrote: > GWT Eclipse plugin is not maintained anymore... So to use the newest one > you could move to pure Maven or Gradle... I only

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

2020-08-06 Thread lofid...@gmail.com
GWT Eclipse plugin is not maintained anymore... So to use the newest one you could move to pure Maven or Gradle... I only use Maven sofar and it works well... shahra...@gmail.com schrieb am Dienstag, 28. Juli 2020 um 00:11:58 UTC+2: > We have a huge GWT project (GWT 2.7, JDK 1.7, Eclipse)

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

2020-07-27 Thread Shahram Zadeh
Thanks for the prompt response. The issue is the internal Jetty that cannot be loaded with openJdk 11. Here is the log. Is there any way to replace the internal Jetty with a higher version? I Checked the Jetty forum and apparently they are aware of this. The code server is ready at

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) {

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

2020-07-27 Thread Shahram Zadeh
We have a huge GWT project (GWT 2.7, JDK 1.7, Eclipse) everything works perfect. We are planning to upgrade to Java 11 and GWT 2.9 which has been recently released. However Java 1.7 is retiring and getting obsolete we have to move on and upgrade. Since last week we are trying to create a