The HTTPRouter modules do not need to be specified during migrations to Liberty, as they are included by default. This rule flags the existence of HTTPRouter modules in WebSphere traditional applications with JAX-WS web services. WebSphere applications using this module should remove the module dependency from their respective builds.
For example, in the pom.xml snippet provided, the line containing the <module>Test_HTTPRouter</module>
text should be removed when migrating this Maven application to Liberty.
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.app</groupId>
<artifactId>my-app</artifactId>
<version>1</version>
<!-- Module dependencies -->
<modules>
<module>TestEJB</module>
<module>Test_HTTPRouter</module>
<module>TestPMIWeb</module>
</modules>
</project>
For more information on Web Service router modules, please refer to Creating web service router modules.