com.github.swissquote.carnotzet.maven.plugin.AddressesMojo Maven / Gradle / Ivy
package com.github.swissquote.carnotzet.maven.plugin;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.ResolutionScope;
import com.github.swissquote.carnotzet.maven.plugin.impl.Addresses;
/**
* Lists the IP addresses of running containers
*/
@Mojo(name = "addrs", defaultPhase = LifecyclePhase.NONE, threadSafe = true, requiresDependencyResolution = ResolutionScope.COMPILE)
public class AddressesMojo extends AbstractZetMojo {
@Override
public void executeInternal() throws MojoExecutionException, MojoFailureException {
Addresses.execute(getRuntime(), getLog());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy