Skip to content

Commit

Permalink
fix: lowercase groupid and artifactid on publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Silthus committed Nov 14, 2021
1 parent 2c8b6be commit f02d7dd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gradle/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ publishing {
publications {
shadow(MavenPublication) { publication ->
project.shadow.component(publication)
artifactId = project.getName().toLowerCase()
groupId = ((String)project.getGroup()).toLowerCase()
}
}
repositories {
Expand Down

0 comments on commit f02d7dd

Please sign in to comment.