Re: GWT compile stuck

2023-02-27 Thread Alaa Humaidat
I was only able to fix the error above *ecj *from from *apache-jsp* per the suggestions here ``` org.eclipse.jetty apache-jsp ${jetty.version} org.eclipse.jdt

Re: GWT compile stuck

2023-02-26 Thread Alaa Humaidat
Actually, after a few tries, I started getting compilation errors on all lines containing logical operators. For example, ``` public void onClick(ClickEvent event) { * if ( ! selectedOptionsList.isEmpty()) {* repOptfPanel.clear();

Re: GWT compile stuck

2023-02-24 Thread Alaa Humaidat
Thank you, upgrading to java 11.0.18 fixed the issue, however, I got the following compilation error: ``` [ERROR] An internal compiler exception occurred com.google.gwt.dev.jjs.InternalCompilerException: Unexpected operator for EqualExpression at

Re: GWT compile stuck

2023-02-24 Thread Thomas Broyer
This looks like a deadlock in JDK classes themselves. Did you try updating your JDK to the latest version? (11.0.18 AFAICT; 11.0.5 is more than 3 years old already) On Thursday, February 23, 2023 at 3:14:03 PM UTC+1 alaahu...@gmail.com wrote: > I'm working on upgrading an app that uses GWT

Re: GWT compile stuck

2023-02-23 Thread Alaa Humaidat
Changing localWorkers to 1 didn't fix the issue (tried increasing them gradually as well). *build.log* doesn't show anything: ``` Public resources found in... Translatable source found in... Persistent unit cache dir set to: /home/ahumaidat/sourcegit/ds/gwt-unitCache Opening cache file:

Re: GWT compile stuck

2023-02-23 Thread Jonathan Baxter
Try changing localWorkers to 1? On Thursday, February 23, 2023 at 9:14:03 AM UTC-5 Alaa Humaidat wrote: > I'm working on upgrading an app that uses GWT and embedded jetty server > from java 8 to java 11. The app was working fine with jetty 9, GWT 2.10.0 > before the upgrade. After upgrading