All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.lexemmens.podman.config.skopeo.SkopeoConfiguration Maven / Gradle / Ivy

package nl.lexemmens.podman.config.skopeo;

import nl.lexemmens.podman.config.skopeo.copy.SkopeoCopyConfiguration;
import org.apache.maven.plugins.annotations.Parameter;

/**
 * Holds the configuration for calling the skopeo binary.
 */
public class SkopeoConfiguration {
    /**
     * Configuration for the skopeo copy functionality.
     */
    @Parameter
    protected SkopeoCopyConfiguration copy;

    public SkopeoCopyConfiguration getCopy() {
        return copy;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy