From 16429154bf424674a69b1e5d9cd122327f3fba9c Mon Sep 17 00:00:00 2001 From: Artem Chepurnoy Date: Sat, 27 Feb 2021 11:02:27 +0200 Subject: [PATCH] Remove maven publish plugin --- library/build.gradle | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/library/build.gradle b/library/build.gradle index 59c9897..f8e64c7 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -1,7 +1,6 @@ plugins { id 'com.android.library' id 'kotlin-android' - id 'maven-publish' } android { @@ -39,36 +38,3 @@ dependencies { androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' } - -publishing { - publications { - mavenJava(MavenPublication) { - groupId = 'com.artemchep.bindin' - artifactId = 'bindin' - version = project.version - - pom { - name = 'bindin' - url = 'https://github.com/AChep/bindin' - licenses { - license { - name = 'The Apache License, Version 2.0' - url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' - } - } - developers { - developer { - id = 'AChep' - name = 'Artem Chepurnoy' - email = 'artemchep@gmail.com' - } - } - scm { - connection = 'scm:git:git://github.com/AChep/bindin.git' - developerConnection = 'scm:git:ssh://github.com/AChep/bindin.git' - url = 'https://github.com/AChep/bindin' - } - } - } - } -}