com.github.ngeor.yak4j.Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yak4j-bitbucket-maven-plugin Show documentation
Show all versions of yak4j-bitbucket-maven-plugin Show documentation
yak shaving for Java: A Maven plugin which can create Bitbucket tags
package com.github.ngeor.yak4j;
/**
* Utility methods.
*/
final class Util {
private Util() {}
/**
* Converts a version to a tag.
* The version does not have a prefix (e.g. 1.2.3), but
* the tag has (e.g. v1.2.3).
*/
static String versionToTag(String version) {
if (version == null || version.isEmpty()) {
throw new IllegalArgumentException("version cannot be empty");
}
return "v" + version;
}
}