tbroyer / gwt-maven-plugin

Starting fresh on building GWT projects with Maven
https://tbroyer.github.io/gwt-maven-plugin/
Apache License 2.0
166 stars 39 forks source link

Can't change the codeserver port using <codeServerPort>9873</codeServerPort> #69

Closed temilmg closed 7 years ago

temilmg commented 7 years ago

I am trying to change the codeserver port the following way:

net.ltgt.gwt.maven gwt-maven-plugin 1.0-rc-6 true 1.8 true 9873 ${project.build.directory}/gwt/launcherDir

When I run the server it still uses 9876. Am I doing something wrong?

temilmg commented 7 years ago

Ok the following works:

            <codeserverArgs>
                <arg>-port</arg>
                <arg>9873</arg>
            </codeserverArgs>

For some reason eclipse content assist shows the <codeServerPort> tag which confused me a bit. Closing this issue again.