Skip to content

Commit

Permalink
fix published groupId and artifactId
Browse files Browse the repository at this point in the history
  • Loading branch information
markusressel committed Dec 18, 2023
1 parent b205738 commit 505fa59
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class AndroidLibraryPublishingConventionPlugin : Plugin<Project> {
configure<PublishingExtension> {
publications {
create("maven", MavenPublication::class) {
groupId = "com.github.markusressel.KodeEditor"
artifactId = target.name
groupId = "com.github.markusressel"
artifactId = "KodeEditor"
version = "${target.version}"

artifact("${layout.buildDirectory.get().asFile}/outputs/aar/${target.name}-release.aar") {
Expand Down

0 comments on commit 505fa59

Please sign in to comment.