Using following config in pom
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
<executions>
<execution>
<configuration>
<style>${gwtcompiler.style}</style>
<optimizationLevel>${gwtcompiler.optimizationLevel}</optimizationLevel>
<sourceLevel>auto</sourceLevel>
</configuration>
<goals>
<goal>compile</goal>
<goal>generateAsync</goal>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<extraJvmArgs>
-javaagent:${settings.localRepository}/org/projectlombok/lombok/${lombok.version}/lombok-${lombok.version}.jar=ECJ
--add-opens java.base/java.lang=ALL-UNNAMED
</extraJvmArgs>
<runTarget>index.html</runTarget>
<draftCompile>false</draftCompile>
<sourceLevel>auto</sourceLevel>
</configuration>
</plugin>
<sourceLevel>auto</sourceLevel>
following false warning
is generating
Warning comes from generated Project Settings Facets
did even try with 1.11 or 1.8
Using latest GWT
~/Library/Java/JavaVirtualMachines/openjdk-21.0.1/Contents/Home/bin/java
Any assistance or insights you can provide would be highly appreciated. Thank you in advance for taking the time to read. Your expertise is invaluable, and I welcome any suggestions or solutions you may have.


got the answer on :