mirror of https://github.com/apache/lucene.git
fix all remaining links: dih-extras links to dih, and fix public method taking pkg-private arg in dih
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/solr3733@1388151 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
37413e4ede
commit
486110d172
|
@ -65,6 +65,30 @@
|
||||||
<path refid="classpath"/>
|
<path refid="classpath"/>
|
||||||
</path>
|
</path>
|
||||||
|
|
||||||
|
<!-- TODO: make this nicer like lucene? -->
|
||||||
|
<target name="javadocs" depends="compile-core,define-lucene-javadoc-url,lucene-javadocs,javadocs-solr-core,javadocs-dataimporthandler">
|
||||||
|
<sequential>
|
||||||
|
<mkdir dir="${javadoc.dir}/${name}"/>
|
||||||
|
<solr-invoke-javadoc>
|
||||||
|
<solrsources>
|
||||||
|
<packageset dir="${src.dir}"/>
|
||||||
|
</solrsources>
|
||||||
|
<links>
|
||||||
|
<link href="../solr-solrj"/>
|
||||||
|
<link href="../solr-core"/>
|
||||||
|
<link href="../solr-dataimporthandler"/>
|
||||||
|
</links>
|
||||||
|
</solr-invoke-javadoc>
|
||||||
|
<solr-jarify basedir="${javadoc.dir}/${name}" destfile="${build.dir}/${final.name}-javadoc.jar"/>
|
||||||
|
</sequential>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="javadocs-dataimporthandler">
|
||||||
|
<ant dir="${common-solr.dir}/contrib/dataimporthandler" target="javadocs" inheritAll="false">
|
||||||
|
<propertyset refid="uptodate.and.compiled.properties"/>
|
||||||
|
</ant>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="compile-core" depends="compile-solr-dataimporthandler,resolve-extraction-libs,solr-contrib-build.compile-core"/>
|
<target name="compile-core" depends="compile-solr-dataimporthandler,resolve-extraction-libs,solr-contrib-build.compile-core"/>
|
||||||
<target name="compile-test" depends="compile-solr-dataimporthandler-tests, common-solr.compile-test"/>
|
<target name="compile-test" depends="compile-solr-dataimporthandler-tests, common-solr.compile-test"/>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -193,7 +193,7 @@ public class ContextImpl extends Context {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDoc(DocBuilder.DocWrapper docWrapper) {
|
void setDoc(DocBuilder.DocWrapper docWrapper) {
|
||||||
this.doc = docWrapper;
|
this.doc = docWrapper;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue