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

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

There is a newer version: 1.18.15
Show newest version
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