pl.allegro.tech.build.axion.release.domain.VersionScmPosition.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 org.gradle.api.tasks.Input
class VersionScmPosition {
@Input
final String revision
@Input
final String shortRevision
@Input
final String branch
VersionScmPosition(String revision, String shortRevision, String branch) {
this.revision = revision
this.shortRevision = shortRevision
this.branch = branch
}
@Override
public String toString() {
return "VersionScmPosition[revision = $revision, shortRevision = $shortRevision, branch = $branch]"
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy