Fix a few issues in refresh-share goal (defaults) and read port from maven.tomcat.port.

Fix XML issue in AIO PO testing suite to keep Eclipse happy
This commit is contained in:
Ole Hejlskov
2015-05-08 16:27:20 +02:00
parent c541f66845
commit 56f8336af3
3 changed files with 60 additions and 4 deletions

View File

@@ -61,13 +61,13 @@ public abstract class AbstractRefreshWebappMojo extends AbstractMojo {
/**
* The hostname for where the Alfresco Tomcat server is running.
*/
@Parameter(property = "refreshHost", defaultValue = DEFAULT_USERNAME, alias = "refreshHost")
@Parameter(property = "refreshHost", defaultValue = DEFAULT_HOST, alias = "refreshHost")
private String _host = DEFAULT_HOST;
/**
* The port number for where the Alfresco Tomcat server is running.
*/
@Parameter(property = "refreshPort", defaultValue = DEFAULT_USERNAME, alias = "refreshPort")
@Parameter(property = "refreshPort", defaultValue = DEFAULT_PORT, alias = "refreshPort")
private String _port = DEFAULT_PORT;
/**