use of org.wildfly.plugin.common.MavenModelControllerClientConfiguration in project wildfly-maven-plugin by wildfly.
the class UndeployArtifactMojo method execute.
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
if (skip) {
getLog().debug(String.format("Skipping undeploy of artifact %s:%s", groupId, artifactId));
return;
}
if (artifactId == null) {
throw new MojoDeploymentException("undeploy-artifact must specify the artifactId");
}
if (groupId == null) {
throw new MojoDeploymentException("undeploy-artifact must specify the groupId");
}
final String deploymentName;
if (name == null) {
final Set<Artifact> dependencies = project.getDependencyArtifacts();
Artifact artifact = null;
for (final Artifact a : dependencies) {
if (Objects.equals(a.getArtifactId(), artifactId) && Objects.equals(a.getGroupId(), groupId) && Objects.equals(a.getClassifier(), classifier)) {
artifact = a;
break;
}
}
if (artifact == null) {
throw new MojoDeploymentException("Could not resolve artifact to deploy %s:%s", groupId, artifactId);
}
deploymentName = artifact.getFile().getName();
} else {
deploymentName = name;
}
final DeploymentResult result;
try (ModelControllerClient client = createClient();
MavenModelControllerClientConfiguration configuration = getClientConfiguration()) {
final boolean failOnMissing = !ignoreMissingDeployment;
final DeploymentManager deploymentManager = DeploymentManager.Factory.create(client);
result = deploymentManager.undeploy(UndeployDescription.of(deploymentName).addServerGroups(getServerGroups()).setFailOnMissing(failOnMissing));
} catch (IOException e) {
throw new MojoFailureException(String.format("Failed to execute %s goal.", goal()), e);
}
if (!result.successful()) {
throw new MojoDeploymentException("Failed to undeploy %s. Reason: %s", deploymentName, result.getFailureMessage());
}
}
use of org.wildfly.plugin.common.MavenModelControllerClientConfiguration in project wildfly-maven-plugin by wildfly.
the class UndeployMojo method execute.
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
if (skip) {
getLog().debug(String.format("Skipping undeploy of %s:%s", project.getGroupId(), project.getArtifactId()));
return;
}
final PackageType packageType = PackageType.resolve(project);
// Configure the name if it wasn't yet set
if (name == null) {
name = String.format("%s.%s", project.getBuild().getFinalName(), packageType.getFileExtension());
}
if (checkPackaging && packageType.isIgnored()) {
getLog().debug(String.format("Ignoring packaging type %s.", packageType.getPackaging()));
} else {
final DeploymentResult result;
try (ModelControllerClient client = createClient();
MavenModelControllerClientConfiguration configuration = getClientConfiguration()) {
final boolean failOnMissing = !ignoreMissingDeployment;
final DeploymentManager deploymentManager = DeploymentManager.Factory.create(client);
if (matchPattern == null) {
result = deploymentManager.undeploy(UndeployDescription.of(name).addServerGroups(getServerGroups()).setFailOnMissing(failOnMissing));
} else {
final Set<UndeployDescription> matchedDeployments = findDeployments(deploymentManager, failOnMissing);
if (matchedDeployments.isEmpty()) {
if (failOnMissing) {
throw new MojoDeploymentException("No deployments matched the match-pattern %s.", matchPattern);
}
// nothing to undeploy
return;
}
result = deploymentManager.undeploy(matchedDeployments);
}
} catch (IOException e) {
throw new MojoFailureException("Failed to execute undeploy goal.", e);
}
if (!result.successful()) {
throw new MojoDeploymentException("Failed to undeploy %s. Reason: %s", name, result.getFailureMessage());
}
}
}
use of org.wildfly.plugin.common.MavenModelControllerClientConfiguration in project wildfly-maven-plugin by wildfly.
the class AbstractDeployment method execute.
@Override
public final void execute() throws MojoExecutionException, MojoFailureException {
if (skipExecution()) {
getLog().debug(String.format("Skipping deployment of %s:%s", project.getGroupId(), project.getArtifactId()));
return;
}
try (ModelControllerClient client = createClient();
MavenModelControllerClientConfiguration configuration = getClientConfiguration()) {
final boolean isDomain = ServerHelper.getContainerDescription(client).isDomain();
validate(isDomain);
// Deploy the deployment
getLog().debug("Executing deployment");
final Deployment deployment = configureDeployment(createDeployment());
final DeploymentResult result = executeDeployment(DeploymentManager.Factory.create(client), deployment);
if (!result.successful()) {
throw new MojoExecutionException(String.format("Failed to execute goal %s: %s", goal(), result.getFailureMessage()));
}
} catch (IOException e) {
throw new MojoFailureException(String.format("Failed to execute goal %s.", goal()), e);
}
}
Aggregations