Actually the issue was that Zipper is package-private, yet EntityProcessorBase had a protected member "Zipper zipper". So EntityProcessorBase added a link to the Zipper class since protected members are part of the API, but the javadocs were not generated for Zipper since it is a pkg-private class. I just committed a fix that makes Zipper private in EntityProcessorBase. If we want to give protected access to it again then we need to make the Zipper class public and to add javadocs to it.
On Fri, Dec 5, 2014 at 3:01 PM, Alan Woodward <[email protected]> wrote: > The (new?) Zipper class doesn't have any javadocs, so any class that *does* > have them is generating bad links. > > Alan Woodward > www.flax.co.uk > > > On 5 Dec 2014, at 11:47, Policeman Jenkins Server wrote: > > Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-MacOSX/1977/ > Java: 64bit/jdk1.8.0 -XX:+UseCompressedOops -XX:+UseParallelGC (asserts: > false) > > All tests passed > > Build Log: > [...truncated 58427 lines...] > -documentation-lint: > [jtidy] Checking for broken html (such as invalid tags)... > [delete] Deleting directory > /Users/jenkins/workspace/Lucene-Solr-trunk-MacOSX/lucene/build/jtidy_tmp > [echo] Checking for broken links... > [exec] > [exec] Crawl/parse... > [exec] > [exec] Verify... > [exec] > [exec] > file:///Users/jenkins/workspace/Lucene-Solr-trunk-MacOSX/solr/build/docs/solr-dataimporthandler/org/apache/solr/handler/dataimport/EntityProcessorBase.html > [exec] BROKEN LINK: > file:///Users/jenkins/workspace/Lucene-Solr-trunk-MacOSX/solr/build/docs/solr-core/org/apache/solr/handler/dataimport.Zipper.html > [exec] BROKEN LINK: > file:///Users/jenkins/workspace/Lucene-Solr-trunk-MacOSX/solr/build/docs/solr-core/org/apache/solr/handler/dataimport.Zipper.html > [exec] > [exec] Broken javadocs links were found! > > BUILD FAILED > /Users/jenkins/workspace/Lucene-Solr-trunk-MacOSX/build.xml:519: The > following error occurred while executing this line: > /Users/jenkins/workspace/Lucene-Solr-trunk-MacOSX/build.xml:83: The > following error occurred while executing this line: > /Users/jenkins/workspace/Lucene-Solr-trunk-MacOSX/solr/build.xml:554: The > following error occurred while executing this line: > /Users/jenkins/workspace/Lucene-Solr-trunk-MacOSX/solr/build.xml:567: The > following error occurred while executing this line: > /Users/jenkins/workspace/Lucene-Solr-trunk-MacOSX/lucene/common-build.xml:2388: > exec returned: 1 > > Total time: 191 minutes 20 seconds > Build step 'Invoke Ant' marked build as failure > [description-setter] Description set: Java: 64bit/jdk1.8.0 > -XX:+UseCompressedOops -XX:+UseParallelGC (asserts: false) > Archiving artifacts > Recording test results > Email was triggered for: Failure - Any > Sending email for trigger: Failure - Any > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Adrien --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
