From 343bfdf1e559e838b943b2ef462696b970242a05 Mon Sep 17 00:00:00 2001 From: ymwm_lxl Date: Thu, 18 Nov 2021 10:23:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/build.gradle b/build.gradle index 63a3165..13de1c1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,6 @@ plugins { id 'com.android.library' + id 'maven-publish' } android { @@ -28,6 +29,19 @@ android { } } +afterEvaluate { + publishing { + publications { + release(MavenPublication) { + from components.release + groupId = 'com.dbc61.higreenlog' + artifactId = 'final' + version = '0.2.0' + } + } + } +} + dependencies { implementation 'androidx.appcompat:appcompat:1.3.1'