Hello all, When I change the port number in javascript plugin configuration as for example : <plugin> <groupId>org.codehaus.mojo.javascript</groupId> <artifactId>javascript-maven-plugin</artifactId> <extensions>true</extensions> <executions> <execution> <goals> <goal>war-package</goal> <goal>prepare-tests</goal> <goal>jsunit</goal> <goal>compress</goal> </goals> <configuration> <strip>;;;</strip> <compressor>shrinksafe</compressor> <port>9980</port> </configuration> </execution> </executions> </plugin>
The jsunit acceptor starts on 9980, but the test runner still tries to connect to 8080 port number, is there any way to configure the test runner with the javascript plugin ? Thanks for any answer. Jean-Yves