Skip to content

Commit

Permalink
fixed publishing with gradle 8
Browse files Browse the repository at this point in the history
  • Loading branch information
DenuxPlays committed Nov 5, 2023
1 parent d96bd4f commit 8cfa9c3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ publishing {
developer {
id.set("Denux")
name.set("Timon Thomas Klinkert")
email.set("dev@denux.dev")
email.set("timon.klinkert@denux.dev")
}
}
}
Expand Down Expand Up @@ -164,3 +164,8 @@ tasks.create("release") {
// Builds all jars for publications
dependsOn(build)
}

//Fix for publishing with gradle 8.x
tasks.withType<PublishToMavenRepository>().configureEach {
dependsOn(":signArchives")
}

0 comments on commit 8cfa9c3

Please sign in to comment.