com.dkanejs.maven.plugins.docker.compose.DockerComposeDownMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-compose-maven-plugin Show documentation
Show all versions of docker-compose-maven-plugin Show documentation
Maven plugin for docker-compose
package com.dkanejs.maven.plugins.docker.compose;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Mojo;
import java.util.ArrayList;
import java.util.List;
@SuppressWarnings("unused")
@Mojo(name = "down", threadSafe = true)
public class DockerComposeDownMojo extends AbstractDockerComposeMojo {
public void execute() throws MojoExecutionException {
if (skip) {
getLog().info("Skipping execution");
return;
}
List args = new ArrayList<>();
args.add(Command.DOWN.getValue());
if (removeVolumes) {
getLog().info("Removing volumes");
args.add("-v");
}
if (removeImages) {
getLog().info("Removing images");
args.add("--rmi");
args.add(removeImagesType);
}
if (removeOrphans) {
getLog().info("Removing orphans");
args.add("--remove-orphans");
}
super.execute(args);
}
}