Update of /cvsroot/archive-access/archive-access/projects/nutch
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11063
Modified Files:
maven.xml
Log Message:
* maven.xml
Overwrite any existing nutch-site.xml with our own nutchwax version
(I hate ant).
Index: maven.xml
===================================================================
RCS file: /cvsroot/archive-access/archive-access/projects/nutch/maven.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** maven.xml 2 Sep 2005 01:08:18 -0000 1.9
--- maven.xml 5 Oct 2005 23:16:47 -0000 1.10
***************
*** 86,93 ****
</fileset>
</copy>
- <!--Copy over the nutch-site.xml that has all the plugins we need
- in place to a viewer such as wera.-->
- <copy tofile="${maven.dist.bin.assembly.dir}/conf/nutch-site.xml"
- file="${basedir}/conf/nutch-site.xml.all" filtering="true" />
<!--Fill the bin dir. Fill from nutch first. Then from nutchwax
--- 86,89 ----
***************
*** 107,111 ****
<property name="dist.bin.assembly.plugins.dir"
value="${maven.dist.bin.assembly.dir}/plugins" />
! <copy todir="${dist.bin.assembly.plugins.dir}" filtering="true">
<fileset dir="${nutch.dir}/build/plugins" />
</copy>
--- 103,107 ----
<property name="dist.bin.assembly.plugins.dir"
value="${maven.dist.bin.assembly.dir}/plugins" />
! <copy todir="${dist.bin.assembly.plugins.dir}" filtering="false">
<fileset dir="${nutch.dir}/build/plugins" />
</copy>
***************
*** 121,124 ****
--- 117,126 ----
</fileset>
</copy>
+
+ <!--Copy over the nutch-site.xml that has all the plugins we need
+ in place to a viewer such as wera.-->
+ <copy tofile="${maven.dist.bin.assembly.dir}/conf/nutch-site.xml"
+ file="${basedir}/conf/nutch-site.xml.all" filtering="true"
+ overwrite="true" />
</postGoal>
|