From a144c817e466ab8b7b54d05e7090d1195dacefd8 Mon Sep 17 00:00:00 2001 From: yonghanJu Date: Thu, 6 Jul 2023 18:41:26 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20jitpack=20=EB=B0=B0=ED=8F=AC=20?= =?UTF-8?q?=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- capture/build.gradle | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/capture/build.gradle b/capture/build.gradle index 526c401..acb9274 100644 --- a/capture/build.gradle +++ b/capture/build.gradle @@ -1,6 +1,7 @@ plugins { id 'com.android.library' id 'org.jetbrains.kotlin.android' + id 'maven-publish' } android { @@ -57,4 +58,24 @@ dependencies { implementation "androidx.compose.ui:ui-graphics:1.2.0" } -group = "com.github.yonghanJu" \ No newline at end of file +afterEvaluate { + publishing { + publications { + release(MavenPublication) { + from components.release + + groupId = 'com.github.yonghanJu' + artifactId = 'capturecomposable' + version = '1.0.0' + } + // Creates a Maven publication called “debug”. + debug(MavenPublication) { + from components.debug + + groupId = 'com.github.yonghanJu' + artifactId = 'capturecomposable' + version = '1.0.0' + } + } + } +} \ No newline at end of file