LUCENE-9577: fix changed task name

This commit is contained in:
Uwe Schindler 2020-10-09 16:18:59 +02:00
parent 2329423e5c
commit f97208a790
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ configure(rootProject) {
}
configure(subprojects.findAll { it.path in [':lucene', ':solr'] }) {
task checkBrokenLinks(type: CheckBrokenLinksTask, 'dependsOn': 'documentation')
task checkBrokenLinks(type: CheckBrokenLinksTask, 'dependsOn': 'documentation:assemble')
check.dependsOn checkBrokenLinks
}