public void execute()
throws MojoExecutionException
{
try
{
AndroMDApp andromdapp = new AndroMDApp();
final URL internalConfiguration = ResourceUtils.getResource(INTERNAL_CONFIGURATION_URI);
if (internalConfiguration == null)
{
throw new MojoExecutionException("No configuration could be loaded from --> '" +
INTERNAL_CONFIGURATION_URI + "'");
}
andromdapp.addConfigurationUri(internalConfiguration.toString());
final String configuration = this.getConfigurationContents();
if (configuration != null)
{
andromdapp.addConfiguration(this.getConfigurationContents());
}
andromdapp.run();
}
catch (final Throwable throwable)
{
if (throwable instanceof MojoExecutionException)
{