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

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

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

import com.github.zafarkhaja.semver.Version
import pl.allegro.tech.build.axion.release.domain.scm.ScmPosition

class ProjectVersion {

    final Version version

    final ScmPosition position

    final String decoratedVersion

    ProjectVersion(Version version, ScmPosition position, String decoratedVersion) {
        this.version = version
        this.position = position
        this.decoratedVersion = decoratedVersion
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy