pl.allegro.tech.build.axion.release.domain.ProjectVersion.groovy 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
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