package org.codehaus.mojo.weblogic; /* * Copyright 2006 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import org.apache.maven.plugin.MojoExecutionException; /** * Redeploy artifact on Weblogic server(s) or cluster(s). * * @author <a href="mailto:scott@theryansplace.com">Scott Ryan</a> * @version $Id$ * @description redeploy an artifact (war, ear, etc) to a target(s) which can be servers or clusters. * @goal redeploy */ public class ReDeployMojo extends DeployMojoBase { /** * This method will perform the re-deployment of the object to the proper server url. * * @throws MojoExecutionException Thrown if we fail to obtain a Weblogic deployment instance. */ public void execute() throws MojoExecutionException { if ( getLog().isInfoEnabled() ) { getLog().info( "Weblogic Re-deployment beginning with options " + this.toString() ); } // get the basic parameters String[] parameters = this.getInputParameters( "redeploy" ); boolean success = super.executeDeployer( parameters, "Exception encountered during artifact redeploy" ); if ( getLog().isInfoEnabled() ) { if ( success ) { getLog().info( "Weblogic artifact redeploy successful " ); } else { getLog().info( "Weblogic artifact redeploy failed " ); } } } }