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

net.sf.buildbox.changes.BuildToolRole Maven / Gradle / Ivy

Go to download

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