Re: Different code-server port with gwt-maven-plugin

2017-08-09 Thread Jens
>From the documentation you linked: codeserverArgs List - Additional arguments to be passed to the GWT compiler. Can't you use that? Argument to change the code server port is "port". -- J. -- You received

Different code-server port with gwt-maven-plugin

2017-08-09 Thread Luca Morettoni
Hello, for a project we’re using the fantastic gwt-maven-plugin, but now we need to migrate a legacy feature of the app to a new version, and we like to run both version of the app (old and new) to compare the results. We have a difficult, we can’t force the code-server to use a port different

Re: Different code-server port with gwt-maven-plugin

2017-08-09 Thread Ignacio Baca Moreno-Torres
You can use arbitrary arguments per-mode, so to add the codeserverPort to the codeserver goal add: -codeServerPort1234 If you are using dev mode use: -codeServerPort1234. On Wednesday, August 9, 2017 at 3:01:01 PM UTC+2, Luca Morettoni wrote: > > Hello, for a project we’re using the fantastic