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/publishing-pom.gradle" )
apply plugin: 'signing'
dependencies {
constraints {
api project( ":hibernate-core" )
@ -69,4 +71,10 @@ publishing {
from components.javaPlatform
}
}
}
}
project( ":release" ).getTasks().named( "publishReleaseArtifacts" ).configure {
dependsOn tasks.release
}
tasks.release.dependsOn tasks.publishToSonatype