Skip to content

Commit

Permalink
Added maven-publish gradle plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorKabata committed Jul 26, 2023
1 parent db2950c commit b71d71c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ratingbar-multiplatform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,16 @@ android {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}

afterEvaluate {
publishing {
publications.withType<MavenPublication> {
pom {
groupId = "com.gowtham.composeratingbar"
artifactId = "compose-ratingbar-multiplatform"
version = "1.0.0"
}
}
}
}

0 comments on commit b71d71c

Please sign in to comment.