Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions hibernate-platform/hibernate-platform.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,17 @@ dependencies {
}
}

task releasePrepare {
group "release-prepare"
description "See :release:releasePrepare for details."

dependsOn generateMetadataFileForPublishedArtifactsPublication
dependsOn generatePomFileForPublishedArtifactsPublication
// we depend on publishAllPublicationsToStagingRepository to make sure that the artifacts are "published" to a local staging directory
// used by JReleaser during the release process
dependsOn publishAllPublicationsToStagingRepository
}

publishing {
publications {
publishedArtifacts {
Expand Down
Loading