me.qoomon.maven.extension.gitversioning.GAVGit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-git-versioning-extension Show documentation
Show all versions of maven-git-versioning-extension Show documentation
Maven Git Versioning Extension
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