net.sf.buildbox.changes.BuildToolRole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of releasator Show documentation
Show all versions of releasator Show documentation
Commandline utility for creating reproducible releases. Minimal parametrization, isolated sandbox for releases. Currently built on top of maven-release-plugin.
The newest version!
package net.sf.buildbox.changes;
public enum BuildToolRole {
COMPILER("compiler"),
BUILD("build"),
RELEASE("release");
private final String name;
private BuildToolRole(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy