Skip to content

Commit d9b220a

Browse files
committed
really fix maven publish
1 parent 7ab9b9a commit d9b220a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,15 @@ tasks.register<Task>(name = "resolveDependencies") {
8585
}
8686
}
8787

88+
// gradle tasks --all to check tasks in subprojects
8889
tasks.register<Task>(name = "publishForMavenCentral") {
8990
group = "Publishing"
9091
description = "Publishes artifacts to Maven Central"
9192
dependsOn(
9293
":java-client:publishAllPublicationsToBuildRepository",
9394
":java-client:generateLicenseReport",
9495
":java-client:publishToSonatype",
95-
":java-client:closeAndReleaseStagingRepositories",
96+
"closeAndReleaseStagingRepositories",
9697
)
9798
doLast {
9899
val version = this.project.version.toString()

0 commit comments

Comments
 (0)