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

net.wouterdanes.docker.provider.model.Artifact Maven / Gradle / Ivy

package net.wouterdanes.docker.provider.model;

import org.apache.maven.plugins.annotations.Parameter;

import java.io.File;
import java.util.Optional;

public class Artifact {
    @Parameter(required = true)
    private File file;

    @Parameter
    private String dest;

    public Optional getDest() {
        return Optional.ofNullable(dest);
    }

    public void setDest(String dest) {
        this.dest = dest;
    }

    public File getFile() {
        return file;
    }

    public void setFile(File file) {
        this.file = file;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy