org.technologybrewery.habushu.PackageDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of habushu-maven-plugin Show documentation
Show all versions of habushu-maven-plugin Show documentation
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 PackageDefinition {
private String packageName;
private String operatorAndVersion;
private boolean active = true;
public PackageDefinition() {
}
public String getPackageName() {
return packageName;
}
public void setPackageName(String packageName) {
this.packageName = packageName;
}
public String getOperatorAndVersion() {
return operatorAndVersion;
}
public void setOperatorAndVersion(String operatorAndVersion) {
this.operatorAndVersion = operatorAndVersion;
}
public boolean isActive() {
return active;
}
public void setActive(boolean active) {
this.active = active;
}
}