Skip to content

Commit

Permalink
Fix marker groupId
Browse files Browse the repository at this point in the history
See #33
  • Loading branch information
martinbonnin committed Dec 5, 2024
1 parent 2290ea2 commit ff18e58
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions gr8-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,13 @@ gradlePlugin {
}

Librarian.module(project)

// See https://github.com/GradleUp/librarian/issues/50
afterEvaluate {
extensions.getByType<PublishingExtension>().publications.configureEach {
this as MavenPublication
if (name.lowercase().contains("marker")) {
this.groupId = "com.gradleup.gr8"
}
}
}

0 comments on commit ff18e58

Please sign in to comment.