LUCENE-9577: move the checkBrokenLinks task to the documentation subprojects

This commit is contained in:
Uwe Schindler 2020-10-09 16:44:36 +02:00
parent f97208a790
commit 6acb7b4293
1 changed files with 4 additions and 4 deletions

View File

@ -20,13 +20,13 @@ configure(rootProject) {
group 'Verification' group 'Verification'
description 'Check broken links in the entire documentation' description 'Check broken links in the entire documentation'
dependsOn ':lucene:checkBrokenLinks' dependsOn ':lucene:documentation:checkBrokenLinks'
dependsOn ':solr:checkBrokenLinks' dependsOn ':solr:documentation:checkBrokenLinks'
} }
} }
configure(subprojects.findAll { it.path in [':lucene', ':solr'] }) { configure(subprojects.findAll { it.path in [':lucene:documentation', ':solr:documentation'] }) {
task checkBrokenLinks(type: CheckBrokenLinksTask, 'dependsOn': 'documentation:assemble') task checkBrokenLinks(type: CheckBrokenLinksTask, 'dependsOn': 'documentation')
check.dependsOn checkBrokenLinks check.dependsOn checkBrokenLinks
} }