protected void invokeManager()
throws MojoExecutionException, TomcatManagerException, IOException
{
getLog().info( messagesProvider.getMessage( "ReloadMojo.reloadingApp", getDeployedURL() ) );
TomcatManagerResponse tomcatResponse = getManager().reload( getPath() );
/* TODO : Tomcat always return http status 200. How check message to know error or not,
* cause is can be in french, english....
*/
checkTomcatResponse( tomcatResponse );
log( tomcatResponse.getHttpResponseBody() );
}