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

me.qoomon.maven.extension.gitversioning.GAVGit Maven / Gradle / Ivy

There is a newer version: 9.10.0
Show newest version
package me.qoomon.maven.extension.gitversioning;


public class GAVGit extends GAV {

    private final String commit;
    private final String commitRefType;
    private final String commitRefName;

    GAVGit(String groupId, String artifactId, String version, String commit, String commitRefType, String commitRefName) {
        super(groupId, artifactId, version);
        this.commit = commit;
        this.commitRefType = commitRefType;
        this.commitRefName = commitRefName;
    }

    String getCommit() {
        return commit;
    }

    String getCommitRefType() {
        return commitRefType;
    }

    String getCommitRefName() {
        return commitRefName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy