From 54e8b35b84592f0659cefc1d31918732ea9da103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernd=20Pr=C3=BCnster?= Date: Fri, 4 Oct 2024 19:46:08 +0200 Subject: [PATCH] work around nexus publishing bug --- build.gradle.kts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index a81369d..95d758b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,3 +1,8 @@ plugins { id("at.asitplus.gradle.conventions") version "2.0.20+20240920" } -group = "at.asitplus" \ No newline at end of file +group = "at.asitplus" + +//work around nexus publish bug +val artifactVersion: String by extra +version = artifactVersion +//end work around nexus publish bug