mirror of https://github.com/apache/lucene.git
LUCENE-4011: work around javadoc bug and enable javadocs-lint for solr
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1329272 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a316fb69ee
commit
9bf158e095
|
@ -186,6 +186,10 @@ def checkAll(dirName):
|
||||||
elif link.startswith('javascript:'):
|
elif link.startswith('javascript:'):
|
||||||
# ok...?
|
# ok...?
|
||||||
pass
|
pass
|
||||||
|
elif 'org/apache/solr/client/solrj/beans/Field.html' in link:
|
||||||
|
# see LUCENE-4011: this is a javadocs bug for constants
|
||||||
|
# on annotations it seems?
|
||||||
|
pass
|
||||||
elif link not in allFiles:
|
elif link not in allFiles:
|
||||||
# We only load HTML... so if the link is another resource (eg
|
# We only load HTML... so if the link is another resource (eg
|
||||||
# SweetSpotSimilarity refs
|
# SweetSpotSimilarity refs
|
||||||
|
|
|
@ -546,7 +546,7 @@
|
||||||
<!-- TODO: does solr have any other docs we should check? -->
|
<!-- TODO: does solr have any other docs we should check? -->
|
||||||
<!-- TODO: also integrate checkJavaDocs.py, which does more checks -->
|
<!-- TODO: also integrate checkJavaDocs.py, which does more checks -->
|
||||||
<target name="javadocs-lint" depends="javadocs">
|
<target name="javadocs-lint" depends="javadocs">
|
||||||
<!-- TODO: enable <check-broken-links dir="build/docs"/> -->
|
<check-broken-links dir="build/docs"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="generate-maven-artifacts" depends="install-maven-tasks">
|
<target name="generate-maven-artifacts" depends="install-maven-tasks">
|
||||||
|
|
Loading…
Reference in New Issue