File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,29 @@ buildscript {
1313 repositories {
1414 google()
1515 mavenCentral()
16+ maven { url " https://jitpack.io" }
1617 }
1718 dependencies {
1819 classpath " com.android.tools.build:gradle:$agpVersion "
1920 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion "
2021 classpath " com.vanniktech:gradle-maven-publish-plugin:$mavenPublishVersion "
2122 classpath " org.jetbrains.dokka:dokka-gradle-plugin:$kotlinVersion "
2223 }
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'
2339}
2440
2541task clean (type : Delete ) {
You can’t perform that action at this time.
0 commit comments