org.technologybrewery.habushu.util.PoetryUtil 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.util;
/**
* Common utility methods for handling TOML Poetry.
*/
public final class PoetryUtil {
/**
* Specifies the semver compliant requirement for the version of Poetry that
* must be installed and available for Habushu to use.
*/
public static final String POETRY_VERSION_REQUIREMENT = "^1.5.0";
/**
* Specifies the semver compliant requirement for the version of Poetry-core that
* must be installed and available for Habushu to use.
*/
public static final String POETRY_CORE_VERSION_REQUIREMENT = "^1.6.0";
}