From 1ad140710eeccdf244ff402e5de582ba6d038c55 Mon Sep 17 00:00:00 2001 From: Taras Smakula <tarassmakula@gmail.com> Date: Wed, 10 Apr 2024 16:13:32 +0300 Subject: [PATCH] Remove publish from gallery --- gallery/build.gradle | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/gallery/build.gradle b/gallery/build.gradle index 4fc9deb43..c3b391454 100644 --- a/gallery/build.gradle +++ b/gallery/build.gradle @@ -3,7 +3,6 @@ apply plugin: 'org.jetbrains.kotlin.android' apply plugin: 'androidx.navigation.safeargs.kotlin' apply plugin: 'kotlin-kapt' apply plugin: 'dagger.hilt.android.plugin' -apply plugin: 'maven-publish' android { @@ -39,12 +38,6 @@ android { "-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi", ] } - publishing { - singleVariant("release") { - withSourcesJar() - withJavadocJar() - } - } } dependencies { @@ -65,19 +58,4 @@ dependencies { kapt { correctErrorTypes = true -} - - -publishing { - publications { - release(MavenPublication) { - groupId = rootProject.ext.modules_groupId - artifactId = "gallery" - version rootProject.ext.modules_version - - afterEvaluate { - from components.release - } - } - } } \ No newline at end of file -- GitLab