From 177e63c1f6af1141d644ebe64ff6603b8fe77a19 Mon Sep 17 00:00:00 2001 From: theapache64 Date: Thu, 30 Mar 2023 09:12:28 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=9F=20add=20maven=20publish=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rebugger/build.gradle | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/rebugger/build.gradle b/rebugger/build.gradle index 0450a9f..f74aa0e 100644 --- a/rebugger/build.gradle +++ b/rebugger/build.gradle @@ -1,6 +1,7 @@ plugins { id 'com.android.library' id 'org.jetbrains.kotlin.android' + id 'maven-publish' } android { @@ -47,4 +48,17 @@ dependencies { androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' implementation "androidx.compose.runtime:runtime:$compose_version" +} + +afterEvaluate { + publishing { + publications { + mavenPublication(MavenPublication) { + from components.release + groupId 'com.github.theapache64' + artifactId 'rebugger' + version '1.0.0-alpha01' + } + } + } } \ No newline at end of file