Repository: nutch Updated Branches: refs/heads/2.x 72a99cf07 -> 3f9ad62d5
NUTCH-2266 Dead link in build.xml for javadoc is fixed. javadoc link for lucene is removed and javadoc links for solr-solrj, lucene.core and lucene.analyzers-common are created. Project: http://git-wip-us.apache.org/repos/asf/nutch/repo Commit: http://git-wip-us.apache.org/repos/asf/nutch/commit/3f9ad62d Tree: http://git-wip-us.apache.org/repos/asf/nutch/tree/3f9ad62d Diff: http://git-wip-us.apache.org/repos/asf/nutch/diff/3f9ad62d Branch: refs/heads/2.x Commit: 3f9ad62d53a974d810a78db8bcd33a8cc1eaf67d Parents: 72a99cf Author: Furkan KAMACI <[email protected]> Authored: Mon May 23 23:49:10 2016 +0300 Committer: Furkan KAMACI <[email protected]> Committed: Tue May 24 00:42:05 2016 +0300 ---------------------------------------------------------------------- build.xml | 4 +++- default.properties | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nutch/blob/3f9ad62d/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 4ae31eb..67fcfca 100644 --- a/build.xml +++ b/build.xml @@ -636,7 +636,9 @@ <packageset dir="${plugins.dir}/urlnormalizer-regex/src/java"/> <link href="${javadoc.link.java}" /> - <link href="${javadoc.link.lucene}" /> + <link href="${javadoc.link.lucene.core}" /> + <link href="${javadoc.link.lucene.analyzers-common}" /> + <link href="${javadoc.link.solr-solrj}" /> <link href="${javadoc.link.hadoop}" /> <classpath refid="classpath" /> http://git-wip-us.apache.org/repos/asf/nutch/blob/3f9ad62d/default.properties ---------------------------------------------------------------------- diff --git a/default.properties b/default.properties index c95435a..5e5f3dd 100644 --- a/default.properties +++ b/default.properties @@ -45,6 +45,9 @@ javadoc.proxy.host=-J-DproxyHost= javadoc.proxy.port=-J-DproxyPort= javadoc.link.java=http://docs.oracle.com/javase/7/docs/api/ javadoc.link.hadoop=http://hadoop.apache.org/docs/r1.2.0/api/ +javadoc.link.lucene.core=https://lucene.apache.org/core/4_6_0/core/ +javadoc.link.lucene.analyzers-common=https://lucene.apache.org/core/4_6_0/analyzers-common/ +javadoc.link.solr-solrj=https://lucene.apache.org/solr/4_6_0/solr-solrj/ javadoc.packages=org.apache.nutch.* dist.dir=./dist
