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 111d526 commit a2df62eCopy full SHA for a2df62e
build.gradle.kts
@@ -79,14 +79,15 @@ tasks.register<Task>(name = "resolveDependencies") {
79
}
80
81
82
+
83
tasks.register<Task>(name = "publishForMavenCentral") {
- group = "Publishing"
84
+ group = "Custom"
85
description = "Publishes artifacts to Maven Central"
86
dependsOn(
87
":java-client:publishAllPublicationsToBuildRepository",
88
":java-client:generateLicenseReport",
- tasks.named("publishToSonatype"),
89
- tasks.named("closeAndReleaseStagingRepositories"),
+ ":java-client:publishToSonatype",
90
+ "closeAndReleaseStagingRepositories",
91
)
92
doLast {
93
val version = this.project.version.toString()
0 commit comments