Where does this go? Which pom.xml? Sorry, I'm looking at returning to Maven because of the lack of Gradle support and their dizzying rate of updates.
So, I've generated a modular-webapp, I tried
<plugin>
<groupId>net.ltgt.gwt.maven</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.0-rc-9</version>
<extensions>true</extensions>
<configuration>
<sourceLevel>1.8</sourceLevel>
<failOnError>true</failOnError>
<devmodeArgs>
<arg>-port</arg><arg>8888</arg>
</devmodeArgs>
</configuration>
</plugin>
in the top-level pom.xm. Port 8888 is open, but I still get
[ERROR] Failed to execute goal org.eclipse.jetty:jetty-maven-plugin:9.4.8.v20171121:run (default-cli) on project web8-server: Failure: Address already in use
I've tried other places, but I'm out of ideas.