You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2020/10/09 14:19:15 UTC

[lucene-solr] branch master updated: LUCENE-9577: fix changed task name

This is an automated email from the ASF dual-hosted git repository.

uschindler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new f97208a  LUCENE-9577: fix changed task name
f97208a is described below

commit f97208a790ff836ab1abb54d016f1a8f61d48617
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Fri Oct 9 16:18:59 2020 +0200

    LUCENE-9577: fix changed task name
---
 gradle/validation/check-broken-links.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle/validation/check-broken-links.gradle b/gradle/validation/check-broken-links.gradle
index 26e9e8a..c5d421c 100644
--- a/gradle/validation/check-broken-links.gradle
+++ b/gradle/validation/check-broken-links.gradle
@@ -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
 }