From 3c660771f2641bb4dd781a8e2b1d6ea6deadd89a Mon Sep 17 00:00:00 2001 From: Muzammal Abdul Ghafoor Date: Tue, 24 Oct 2023 12:51:26 +0400 Subject: [PATCH] added artifacts --- skuDetection/build.gradle.kts | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/skuDetection/build.gradle.kts b/skuDetection/build.gradle.kts index 4bc2cd7..5961ce5 100644 --- a/skuDetection/build.gradle.kts +++ b/skuDetection/build.gradle.kts @@ -58,17 +58,19 @@ dependencies { implementation ("org.tensorflow:tensorflow-lite-gpu:2.4.0") } -publishing { - publications { - create("myPublication") { - from(components.findByName("release")) - - groupId = "com.github.muzammal1451415" // Replace with your group ID - artifactId = "image-detection-library" // Replace with your artifact ID - version = "1.0.2" // Replace with your version +afterEvaluate { + publishing { + publications { + create("myPublication") { + from(components.findByName("release")) + + groupId = "com.github.muzammal1451415" // Replace with your group ID + artifactId = "image-detection-library" // Replace with your artifact ID + version = "1.0.3" // Replace with your version + } } - } + } }