chore: revert auto version
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Timo Ley 2023-02-01 16:42:17 +01:00
parent 39d0bcd8e0
commit 7b65a2a51a
1 changed files with 1 additions and 15 deletions

View File

@ -24,21 +24,7 @@ apply from: './gradle/scripts/mixins.gradle'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
def getVersionName = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'describe', '--tags'
standardOutput = stdout
}
String tagVersion = stdout.toString().trim()
if (tagVersion.charAt(0) == 'v') {
return tagVersion.substring(1);
} else {
return tagVersion;
}
}
version = getVersionName()
version = "1.8.4"
group= "dev.tilera"
archivesBaseName = "auracore"