![JAR search and dependency download from the Maven repository](/logo.png)
org.technologybrewery.habushu.ValidationTrackingStatus 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;
/**
* Used to track the status of checks for Poetry and Python.
*/
class ValidationTrackingStatus {
private boolean alreadyValidatedPoetryInstallation;
private String alreadyValidatedPoetryVersion;
private String priorActivePythonVersionActivated;
public boolean isAlreadyValidatedPoetryInstallation() {
return alreadyValidatedPoetryInstallation;
}
public void setAlreadyValidatedPoetryInstallation(boolean alreadyValidatedPoetryInstallation) {
this.alreadyValidatedPoetryInstallation = alreadyValidatedPoetryInstallation;
}
public String getAlreadyValidatedPoetryVersion() {
return alreadyValidatedPoetryVersion;
}
public void setAlreadyValidatedPoetryVersion(String alreadyValidatedPoetryVersion) {
this.alreadyValidatedPoetryVersion = alreadyValidatedPoetryVersion;
}
public String getPriorActivePythonVersionActivated() {
return priorActivePythonVersionActivated;
}
public void setPriorActivePythonVersionActivated(String priorActivePythonVersionActivated) {
this.priorActivePythonVersionActivated = priorActivePythonVersionActivated;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy