Skip to content

Commit

Permalink
fix: do not set project group
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK committed Dec 7, 2024
1 parent e3b3fbc commit 6d75df2
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ internal object ProjectExtensions {
)
val validate =
tasks.register(PublishPortalDeployment.VALIDATE_TASK_NAME) { validate ->
group = PublishingPlugin.PUBLISH_TASK_GROUP
description = "Validates the Maven Central Portal publication, uploading if needed"
validate.group = PublishingPlugin.PUBLISH_TASK_GROUP
validate.description = "Validates the Maven Central Portal publication, uploading if needed"
validate.mustRunAfter(zipMavenCentralPortal)
validate.doLast {
runBlocking {
Expand All @@ -362,8 +362,8 @@ internal object ProjectExtensions {
}
}
tasks.register(DROP_TASK_NAME) { drop ->
group = PublishingPlugin.PUBLISH_TASK_GROUP
description = "Drops the Maven Central Portal publication"
drop.group = PublishingPlugin.PUBLISH_TASK_GROUP
drop.description = "Drops the Maven Central Portal publication"
drop.mustRunAfter(validate)
drop.mustRunAfter(zipMavenCentralPortal)
drop.doLast {
Expand All @@ -373,8 +373,8 @@ internal object ProjectExtensions {
}
}
tasks.register(RELEASE_TASK_NAME) { release ->
group = PublishingPlugin.PUBLISH_TASK_GROUP
description = "Releases the Maven Central Portal publication"
release.group = PublishingPlugin.PUBLISH_TASK_GROUP
release.description = "Releases the Maven Central Portal publication"
release.mustRunAfter(validate)
release.mustRunAfter(zipMavenCentralPortal)
release.doLast {
Expand Down

0 comments on commit 6d75df2

Please sign in to comment.