File tree Expand file tree Collapse file tree 2 files changed +14
-16
lines changed
Expand file tree Collapse file tree 2 files changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -21,21 +21,6 @@ buildscript {
2121 classpath " com.vanniktech:gradle-maven-publish-plugin:$mavenPublishVersion "
2222 classpath " org.jetbrains.dokka:dokka-gradle-plugin:$kotlinVersion "
2323 }
24- afterEvaluate {
25- publishing {
26- publications {
27- release(MavenPublication ) {
28- groupId = ' com.github.omkar-tenkale'
29- artifactId = ' ExplodingComposable'
30- version = ' 1.0.0'
31- }
32- }
33- }
34- }
35- }
36-
37- plugins {
38- id ' maven-publish'
3924}
4025
4126task clean (type : Delete ) {
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ plugins {
22 id ' com.android.library'
33 id ' org.jetbrains.kotlin.android'
44 id ' org.jetbrains.dokka'
5+ id ' maven-publish'
56}
67
78android {
@@ -61,4 +62,16 @@ dokkaHtml.configure {
6162 }
6263}
6364
64- apply plugin : ' com.vanniktech.maven.publish'
65+ publishing {
66+ publications {
67+ release(MavenPublication ) {
68+ groupId = ' com.github.omkar-tenkale'
69+ artifactId = ' ExplodingComposable'
70+ version = ' 1.0.0'
71+
72+ afterEvaluate {
73+ from components. release
74+ }
75+ }
76+ }
77+ }
You can’t perform that action at this time.
0 commit comments