org.wildfly.plugin.deployment.DeployOnlyMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-maven-plugin Show documentation
Show all versions of wildfly-maven-plugin Show documentation
A maven plugin that allows various management operations to be executed on WildFly Application
Server.
/*
* JBoss, Home of Professional Open Source.
* Copyright 2013, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.wildfly.plugin.deployment;
import java.net.URL;
import org.apache.maven.plugins.annotations.Execute;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.wildfly.plugin.common.PropertyNames;
import org.wildfly.plugin.core.Deployment;
/**
* Deploys only the application to the WildFly Application Server without first invoking the
* the execution of the lifecycle phase 'package' prior to executing itself.
*
* If {@code force} is set to {@code true}, the server is queried to see if the application already exists. If the
* application already exists, the application is redeployed instead of deployed. If the application does not exist the
* application is deployed as normal.
*
* If {@code force} is set to {@code false} and the application has already been deployed to the server, an error
* will occur and the deployment will fail.
*/
@Mojo(name = "deploy-only", threadSafe = true)
@Execute(phase = LifecyclePhase.NONE)
public class DeployOnlyMojo extends DeployMojo {
/**
* A URL representing the a path to the content to be deployed. The server the content is being deployed to will
* require access to the URL.
*
* If defined this overrides the {@code filename} and {@code targetDir} configuration parameters.
*
*/
@Parameter(alias = "content-url", property = PropertyNames.DEPLOYMENT_CONTENT_URL)
private URL contentUrl;
@Override
public String goal() {
return "deploy-only";
}
@Override
protected Deployment createDeployment() {
if (contentUrl == null) {
return super.createDeployment();
}
return Deployment.of(contentUrl);
}
}