From 091185f626edbd7c4683a723ef66425df8b12704 Mon Sep 17 00:00:00 2001 From: Denis Miller <8264513+dmllr@users.noreply.github.com> Date: Mon, 30 Dec 2024 21:58:04 +0900 Subject: [PATCH] add pom file generation --- library/build.gradle | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/library/build.gradle b/library/build.gradle index 1627967..25644af 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -21,3 +21,19 @@ dependencies { testImplementation 'junit:junit:4.13.2' implementation 'androidx.appcompat:appcompat:1.7.0' } + +project.afterEvaluate { + publishing { + publications { + mavenPublish(MavenPublication) { + groupId = 'com.github.dmllr' + artifactId = 'SwipeStack' + version = '0.3.10' + } + } + + repositories { + mavenLocal() + } + } +}