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
8 changes: 7 additions & 1 deletion grails-doc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,13 @@ docsTask.configure { Sync it ->

it.outputs.dir mergedDocsDir

it.from manualDocsDir, apiDocsDir, dataDocsDir
// Exclude page fragments - they have broken links/CSS/JS and are already
// included in the assembled guide pages (see #14986)
it.from(manualDocsDir) {
exclude "guide/pages/**"
}

it.from apiDocsDir, dataDocsDir
it.into mergedDocsDir
}

Expand Down
Loading