HHH-17047 - Follow up tasks for Gradle 8.2 upgrade

- toolchains
- lazy Task creation
- documentation (documentation/ and release/) tasks
This commit is contained in:
Steve Ebersole 2023-08-08 18:11:13 -05:00
parent ffa2ee1443
commit 63ea157390
1 changed files with 4 additions and 0 deletions

View File

@ -63,6 +63,8 @@ def stageQueryGuideTasks = tasks.register( "stageQueryGuide", Copy ) {
group 'documentation'
description "Stages the Query Language Guide as part of preparing for release"
dependsOn ':documentation:renderQueryLanguageGuides'
description "Stages the Query Language Guide as part of preparing for release"
dependsOn ':documentation:renderQueryLanguageGuides'
from project.provider { project( ":documentation" ).layout.buildDirectory.dir( "asciidoc/querylanguage" ) }
into layout.buildDirectory.dir( "documentation/querylanguage" )
@ -72,6 +74,8 @@ def stageUserGuideTask = tasks.register( "stageUserGuide", Copy ) {
group 'documentation'
description "Stages the User Guide as part of preparing for release"
dependsOn ':documentation:renderUserGuides'
description "Stages the User Guide as part of preparing for release"
dependsOn ':documentation:renderUserGuides'
from project.provider { project( ":documentation" ).layout.buildDirectory.dir( "asciidoc/userguide" ) }
into layout.buildDirectory.dir( "documentation/userguide" )