
pl.allegro.tech.build.axion.release.domain.VersionSanitizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axion-release-plugin Show documentation
Show all versions of axion-release-plugin Show documentation
Gradle release and version management plugin
The newest version!
package pl.allegro.tech.build.axion.release.domain;
public class VersionSanitizer {
private static final String PATTERN = "[^A-Za-z0-9-._]";
public String sanitize(String version) {
return version.replaceAll(PATTERN, "-");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy