org.codehaus.mojo.was6.WsUninstallAppMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of was6-maven-plugin Show documentation
Show all versions of was6-maven-plugin Show documentation
Tools for working with IBM WebSphere 6.0.x and 6.1.x. This plugin works along
with an installation of WebSphere Application Server or Process Server -
standalone or ND installation, to provide automated tasks for: generating RMIC stubs,
starting/stopping servers, installing/updating/uninstalling EARs to
application servers, run serviceDeploy and run arbitrary scripts with wsadmin.
package org.codehaus.mojo.was6;
import org.apache.maven.plugin.MojoExecutionException;
import org.dom4j.Document;
/**
* Enables you to uninstall an existing application from a WebSphere Server or Cell. This goal builds upon the wsadmin
* task and shares many of the same attributes. This task is a wrapper for the AdminApp.uninstall() command of the
* wsadmin tool.
*
* @goal wsUninstallApp
* @author David J. M. Karlsen
*/
public class WsUninstallAppMojo
extends AbstractAppMojo
{
/**
* {@inheritDoc}
*/
protected String getTaskName()
{
return "wsUninstallApp";
}
/**
* {@inheritDoc}
*/
protected void configureBuildScript( Document document )
throws MojoExecutionException
{
super.configureBuildScript( document );
configureTaskAttribute( document, "application", applicationName );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy