mirror of https://github.com/apache/lucene.git
LUCENE-9577: move the checkBrokenLinks task to the documentation subprojects
This commit is contained in:
parent
f97208a790
commit
6acb7b4293
|
@ -20,13 +20,13 @@ configure(rootProject) {
|
|||
group 'Verification'
|
||||
description 'Check broken links in the entire documentation'
|
||||
|
||||
dependsOn ':lucene:checkBrokenLinks'
|
||||
dependsOn ':solr:checkBrokenLinks'
|
||||
dependsOn ':lucene:documentation:checkBrokenLinks'
|
||||
dependsOn ':solr:documentation:checkBrokenLinks'
|
||||
}
|
||||
}
|
||||
|
||||
configure(subprojects.findAll { it.path in [':lucene', ':solr'] }) {
|
||||
task checkBrokenLinks(type: CheckBrokenLinksTask, 'dependsOn': 'documentation:assemble')
|
||||
configure(subprojects.findAll { it.path in [':lucene:documentation', ':solr:documentation'] }) {
|
||||
task checkBrokenLinks(type: CheckBrokenLinksTask, 'dependsOn': 'documentation')
|
||||
check.dependsOn checkBrokenLinks
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue