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

pl.allegro.tech.build.axion.release.domain.VersionSanitizer.groovy Maven / Gradle / Ivy

There is a newer version: 1.9.2
Show newest version
package pl.allegro.tech.build.axion.release.domain

class VersionSanitizer {

    private static final String PATTERN = /[^A-Za-z0-9-._]/

    String sanitize(String version) {
        return version.replaceAll(PATTERN, '-')
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy