From 8c05188d74f50c02da933a46dd35dfa9468c61dd Mon Sep 17 00:00:00 2001 From: Andreas Reichel Date: Wed, 5 Feb 2025 12:10:37 +0700 Subject: [PATCH] feat: rework the Visitors Signed-off-by: Andreas Reichel --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 046ac301a..9dc858d60 100644 --- a/build.gradle +++ b/build.gradle @@ -31,7 +31,7 @@ def getVersion = { boolean considerSnapshot -> String snapshot = "" def versionStr = providers.exec { - commandLine "git", "--no-pager", "-C", project(':JSQLParser').projectDir, "describe", "--tags", "--always", "--dirty=-SNAPSHOT" + commandLine "git", "--no-pager", "-C", project.projectDir, "describe", "--tags", "--always", "--dirty=-SNAPSHOT" }.standardOutput.asText.get().trim() def pattern = /(?\d*)\.(?\d*)(\.(?\d*))?(-(?\d*)-(?[a-zA-Z\d]*))?/