Skip to content

Commit

Permalink
fix: jitpack
Browse files Browse the repository at this point in the history
* give jitpack predictable task names, maybe that's what's broken it
  • Loading branch information
ms5984 committed Dec 1, 2023
1 parent cba8ba5 commit 201c6a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tasks.withType<Javadoc> {

afterEvaluate {
publishing {
val publicationName = name
val publicationName = if (System.getenv("JITPACK") != "true") name else "mavenJava"
publications.create<MavenPublication>(publicationName) {
pom {
name.set("Clans")
Expand Down

0 comments on commit 201c6a7

Please sign in to comment.