We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab9b9a commit d9b220aCopy full SHA for d9b220a
build.gradle.kts
@@ -85,14 +85,15 @@ tasks.register<Task>(name = "resolveDependencies") {
85
}
86
87
88
+// gradle tasks --all to check tasks in subprojects
89
tasks.register<Task>(name = "publishForMavenCentral") {
90
group = "Publishing"
91
description = "Publishes artifacts to Maven Central"
92
dependsOn(
93
":java-client:publishAllPublicationsToBuildRepository",
94
":java-client:generateLicenseReport",
95
":java-client:publishToSonatype",
- ":java-client:closeAndReleaseStagingRepositories",
96
+ "closeAndReleaseStagingRepositories",
97
)
98
doLast {
99
val version = this.project.version.toString()
0 commit comments