hibernate-platform release

This commit is contained in:
Steve Ebersole 2023-05-17 16:14:57 -05:00
parent 787ba8532d
commit edd825d133
1 changed files with 9 additions and 1 deletions

View File

@ -6,6 +6,8 @@ apply from: rootProject.file( 'gradle/releasable.gradle' )
apply from: rootProject.file( "gradle/base-information.gradle" ) apply from: rootProject.file( "gradle/base-information.gradle" )
apply from: rootProject.file( "gradle/publishing-pom.gradle" ) apply from: rootProject.file( "gradle/publishing-pom.gradle" )
apply plugin: 'signing'
dependencies { dependencies {
constraints { constraints {
api project( ":hibernate-core" ) api project( ":hibernate-core" )
@ -70,3 +72,9 @@ publishing {
} }
} }
} }
project( ":release" ).getTasks().named( "publishReleaseArtifacts" ).configure {
dependsOn tasks.release
}
tasks.release.dependsOn tasks.publishToSonatype