HHH-14083 add ciRelease dependency to bintray upload

This commit is contained in:
Andrea Boriero 2020-06-22 16:44:15 +01:00
parent 4cf9591501
commit f64f0bc91b
1 changed files with 8 additions and 0 deletions

View File

@ -299,6 +299,14 @@ task changeLogFile( dependsOn: [releaseChecks] ) {
}
}
rootProject.subprojects.each { Project subProject ->
if ( !this.name.equals( subProject.name ) ) {
if ( subProject.tasks.findByName( 'release' ) ) {
this.tasks.release.dependsOn( subProject.tasks.release )
}
}
}
task addVersionCommit( dependsOn: [changeLogFile] ) {
group = "Release"
description = "Adds a commit for the released version and push the changes to github"