You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nutch.apache.org by Doug Cutting <cu...@apache.org> on 2006/03/03 00:47:39 UTC

Re: svn commit: r378655 - in /lucene/nutch/trunk/src/plugin: ./ analysis-de/ analysis-fr/ clustering-carrot2/ creativecommons/ index-basic/ index-more/ languageidentifier/ lib-commons-httpclient/ lib-http/ lib-jakarta-poi/ lib-log4j/ lib-lucene-analyzers/ ...

jerome@apache.org wrote:
> Modified: lucene/nutch/trunk/src/plugin/analysis-de/build.xml
> URL: http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/analysis-de/build.xml?rev=378655&r1=378654&r2=378655&view=diff
> ==============================================================================
> --- lucene/nutch/trunk/src/plugin/analysis-de/build.xml (original)
> +++ lucene/nutch/trunk/src/plugin/analysis-de/build.xml Fri Feb 17 15:28:39 2006
> @@ -4,9 +4,16 @@
>  
>    <import file="../build-plugin.xml"/>
>  
> +  <!-- Build compilation dependencies -->
> +  <target name="deps-jar">
> +    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
> +    <ant target="jar" inheritall="false" dir="../lib-lucene-analyzers"/>
> +  </target>

Calling "compile-core" for every plugin makes builds really slow.  I 
think it's safe to assume that the core has already been compiled before 
plugins are compiled.  Don't you?

Doug