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

org.technologybrewery.habushu.WheelDependency Maven / Gradle / Ivy

Go to download

Leverages Poetry and Pyenv to provide an automated, predictable order of execution of build commands that apply DevOps and configuration management best practices

The newest version!
package org.technologybrewery.habushu;

public class WheelDependency {
    private String artifactId;
    private String targetDirectory;

    public WheelDependency() {
    }

    public String getArtifactId() {
        return artifactId;
    }

    public void setArtifactId(String artifactId) {
        this.artifactId = artifactId;
    }

    public String getTargetDirectory() {
        return targetDirectory;
    }

    public void setTargetDirectory(String targetDirectory) {
        this.targetDirectory = targetDirectory;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy