Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2024-06-12 Thread tekkyru
Thanks to all who helped and inspired me, I've gotten rid of the Eclipse GWT plugin and have configured a Gradle project that uses Eclipse plugin, so it can be used standalone from command line or imported to Eclipse. When imported to Eclipse it represents a webapp that can be added to a

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-21 Thread tekkyru
Sounds interesting, I'll definitely give it a try, thank you - and for the gradle file, I really need a production grade gradle example понедельник, 21 февраля 2022 г. в 11:27:04 UTC+1, Luis Fernando Planella Gonzalez: > > Our current workflow is using SuperDevMode + Jetty and I'd like to >

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-21 Thread Luis Fernando Planella Gonzalez
> Our current workflow is using SuperDevMode + Jetty and I'd like to provide similar experience to our team. I had a similar concern, as before we both SuperDevMode and the app in the same Java process. After the switch, we need to start the codeserver and then the app, via Tomcat. But, things

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-20 Thread tekkyru
Thanks for the answer > Can't you somehow disable the module path or put all dependencies in the classpath rather than the module path? Do you mean disabling java.xml module of JRE and depend on all xml stuff explicitly? It means I'd have to rely on dependencies instead of stock libraries

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-20 Thread Luis Fernando Planella Gonzalez
We started using GWT in our project in 2009 (GWT 1.5.0!) When we moved from Maven to Gradle in 2020 (one of the best decisions ever, because the project is complex, has a lot of code generation and Gradle's skipping of already executed tasks is a must - it was unbearable with Maven), we've also

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-20 Thread Thomas Broyer
On Saturday, February 19, 2022 at 1:57:16 AM UTC+1 tequil...@gmail.com wrote: > Hi Jasper > > I'll be just glad if my current progress saves someone's time. > I progress on step by step basis, so far I succeeded in Eclipse build and > debugging. > > Most of my problems were caused by

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-18 Thread tekkyru
Hi Jasper I'll be just glad if my current progress saves someone's time. I progress on step by step basis, so far I succeeded in Eclipse build and debugging. Most of my problems were caused by combination of JDK11+ (namely modules) + Gradle + Eclipse + Eclipse GWT Plugin. Reason: GWT SDK

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-15 Thread blackh...@gmail.com
Hi , You mention that you are migrating from jdk 1.8 to jdk 17. We are in the same process, any tips you have? regards, Jasper Op dinsdag 15 februari 2022 om 22:30:30 UTC+1 schreef tequil...@gmail.com: > Hi, > > > You're all set; the plugin will use the GWT dependencies from the Maven >

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2022-02-15 Thread tekkyru
Hi, > You're all set; the plugin will use the GWT dependencies from the Maven project. The question - can I configure it with gradle? I'm porting a GWT gradle-based Eclipse project from JDK 1.8 to JDK 17 (and from 2.8.2 to 2.9.0) In Eclipse, there's typical JDK11+ error "The package

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-08-05 Thread 'Jim Douglas' via GWT Users
Ok, after more trial and effort, this pom.xml might be workingare there any obvious problems with it? http://maven.apache.org/POM/4.0.0"* xmlns:xsi=*"http://www.w3.org/2001/XMLSchema-instance"* xsi:schemaLocation=*"http://maven.apache.org/POM/4.0.0

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-08-02 Thread 'Jim Douglas' via GWT Users
Ok, StackOverflow showed me how to convert an existing Eclipse project to a Maven Project, then based on your steps 1 and 3 I copied

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-08-01 Thread Thomas Broyer
On Wednesday, July 31, 2019 at 8:02:53 PM UTC+2, Jim Douglas wrote: > > We have a large and complex Eclipse project that uses the GWT SDK for the > GWT client stuff, and doesn't use Maven in any way at all. How would we go > about evolving that away from the GWT SDK? I know effectively nothing

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-31 Thread 'Jim Douglas' via GWT Users
We have a large and complex Eclipse project that uses the GWT SDK for the GWT client stuff, and doesn't use Maven in any way at all. How would we go about evolving that away from the GWT SDK? I know effectively nothing about Maven. Is there some sort of instruction list somewhere to convert an

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-31 Thread 'Jim Douglas' via GWT Users
We have a large and complex Eclipse project that uses the GWT SDK for the GWT client stuff, and doesn't use Maven in any way at all. How would we go about evolving that away from the GWT SDK? I know effectively nothing about Maven. Is there some sort of instruction list somewhere to convert an

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread Jens
> You can download and use the GWT artifacts published to Maven Central ( > https://search.maven.org/search?q=g:com.google.gwt) which do not include > the offending classes. However you must provide these classes manually then > as additional jars on your class path. > On the left side you

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread Jens
> But I have to go back to my original question: Wouldn't it be > theoretically trivial to simply strip out the offending classes from > gwt-dev.jar in the process of publishing a GWT 2.9.0? > That would break everyone using current GWT SDK. repackaging into a different package would be the

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread 'Jim Douglas' via GWT Users
Umm, ok. We have an extremely large and complex GWT development environment here, developed over a decade; God only knows what might be involved in rearchitecting it to not use the GWT SDK. It's complete news to me that there's any alternative; I don't quite know where to start in trying to

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread Juan Pablo Gardella
not Jenkins, Jetty webapp I mean. On Wed, 24 Jul 2019 at 12:45, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > Hi Jim, > > I am working with GWT 2.8.2 + Java11 in a multi module maven project. You > can use https://tbroyer.github.io/gwt-maven-plugin/ to create a simple > archetype

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread Juan Pablo Gardella
Hi Jim, I am working with GWT 2.8.2 + Java11 in a multi module maven project. You can use https://tbroyer.github.io/gwt-maven-plugin/ to create a simple archetype from it and start putting your classes according it usage (that information is described in the links shared by Thomas). To run/debug

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread Thomas Broyer
On Wednesday, July 24, 2019 at 5:14:42 PM UTC+2, Jim Douglas wrote: > > > Sure. Use a build tool of your choice and use the maven dependencies. > > I don't know what that means. As far as I've ever known, developing a GWT > application in Eclipse implies installing the GWT Plugin for Eclipse

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread 'Jim Douglas' via GWT Users
> Sure. Use a build tool of your choice and use the maven dependencies. I don't know what that means. As far as I've ever known, developing a GWT application in Eclipse implies installing the GWT Plugin for Eclipse and picking a GWT SDK. http://www.gwtproject.org/usingeclipse.html On

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread Jens
> Is there currently any way to develop a GWT application in Eclipse without > using the GWT SDK? > Sure. Use a build tool of your choice and use the maven dependencies. If I remember correctly the GWT plugin for eclipse will pick up the gwt-user/gwt-dev jar from the class path if you have

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread 'Jim Douglas' via GWT Users
> Ideally, people should stop using the "GWT SDK" uberjars to begin with Is there currently any way to develop a GWT application in Eclipse without using the GWT SDK? On Wednesday, July 24, 2019 at 7:03:08 AM UTC-7, Thomas Broyer wrote: > > Ideally, people should stop using the "GWT SDK"

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread Thomas Broyer
Ideally, people should stop using the "GWT SDK" uberjars to begin with; because the JAR that's deployed to the Central Repository does not have these packages: https://github.com/gwtproject/gwt/blob/4d36d55d26aabc12e4429faf0603c539a54a13cd/maven/lib-gwt.sh#L109 On Wednesday, July 24, 2019 at

Re: Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-24 Thread Jens
> When I configure Eclipse 2019-06 to use this modified GWT 2.8.2 SDK, i am > able to more or less get it to build, eventually, but with a flood of > obscure "Validating GWT Components" errors that have to be tediously > clicked through: > > An internal error occurred during: "Validating GWT

Building a GWT project in Eclipse 2019-03+ with Java 11.

2019-07-23 Thread 'Jim Douglas' via GWT Users
As of Eclipse 2019-03, Eclipse started to strictly enforce JLS §7.4.3 (7.4.3. Package Observability and Visibility), as discussed here: