Skip to content

Commit

Permalink
fix: publication ids
Browse files Browse the repository at this point in the history
  • Loading branch information
sysnote8main committed Feb 11, 2025
1 parent 6bcfd85 commit 4270591
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ tasks.processResources {
publishing {
publications {
create<MavenPublication>("maven") {
groupId = group.toString()
artifactId = name
version = version
groupId = project.group.toString()
artifactId = project.name
version = project.version.toString()
artifact(tasks.jar)
}
}
Expand Down

0 comments on commit 4270591

Please sign in to comment.