Author: gsingers
Date: Fri Oct 17 12:20:09 2008
New Revision: 705720
URL: http://svn.apache.org/viewvc?rev=705720&view=rev
Log:
include common-build in package, added some memory control options
Modified:
lucene/mahout/trunk/build.xml
lucene/mahout/trunk/common-build.xml
lucene/mahout/trunk/core/build.xml
lucene/mahout/trunk/examples/build.xml
Modified: lucene/mahout/trunk/build.xml
URL:
http://svn.apache.org/viewvc/lucene/mahout/trunk/build.xml?rev=705720&r1=705719&r2=705720&view=diff
==============================================================================
--- lucene/mahout/trunk/build.xml (original)
+++ lucene/mahout/trunk/build.xml Fri Oct 17 12:20:09 2008
@@ -74,7 +74,7 @@
<tar destfile="${dist}/${fullnamever}.tgz" compression="gzip">
<tarfileset dir="."
prefix="${fullnamever}"
- includes="KEYS LICENSE.txt NOTICE.txt README.txt build.xml
pom.xml lib/"
+ includes="KEYS LICENSE.txt NOTICE.txt README.txt build.xml
pom.xml common-build.xml lib/"
excludes=""/>
<tarfileset dir="./core"
prefix="${fullnamever}/core"
Modified: lucene/mahout/trunk/common-build.xml
URL:
http://svn.apache.org/viewvc/lucene/mahout/trunk/common-build.xml?rev=705720&r1=705719&r2=705720&view=diff
==============================================================================
--- lucene/mahout/trunk/common-build.xml (original)
+++ lucene/mahout/trunk/common-build.xml Fri Oct 17 12:20:09 2008
@@ -61,6 +61,8 @@
<!-- Destination for distribution files (demo WAR, src distro, etc.) -->
<property name="dist" value="dist" />
+ <property name="memory" value="256m"/>
+
<dirname file="${ant.file.common}" property="common.dir"/>
Modified: lucene/mahout/trunk/core/build.xml
URL:
http://svn.apache.org/viewvc/lucene/mahout/trunk/core/build.xml?rev=705720&r1=705719&r2=705720&view=diff
==============================================================================
--- lucene/mahout/trunk/core/build.xml (original)
+++ lucene/mahout/trunk/core/build.xml Fri Oct 17 12:20:09 2008
@@ -188,10 +188,11 @@
</target>
+
<target name="test" depends="compile-test, dist-jar" description="Runs unit
tests">
<mkdir dir="${junit.output.dir}"/>
<junit printsummary="off" haltonfailure="no"
- errorProperty="tests.failed" failureProperty="tests.failed"
maxmemory="256m">
+ errorProperty="tests.failed" failureProperty="tests.failed"
maxmemory="${memory}">
<classpath refid="junit.classpath"/>
<assertions>
<enable package="org.apache.mahout"/>
Modified: lucene/mahout/trunk/examples/build.xml
URL:
http://svn.apache.org/viewvc/lucene/mahout/trunk/examples/build.xml?rev=705720&r1=705719&r2=705720&view=diff
==============================================================================
--- lucene/mahout/trunk/examples/build.xml (original)
+++ lucene/mahout/trunk/examples/build.xml Fri Oct 17 12:20:09 2008
@@ -158,7 +158,7 @@
<target name="test" depends="compile-test, dist-jar" description="Runs unit
tests">
<mkdir dir="${junit.output.dir}"/>
<junit printsummary="off" haltonfailure="no"
- errorProperty="tests.failed" failureProperty="tests.failed"
maxmemory="256m">
+ errorProperty="tests.failed" failureProperty="tests.failed"
maxmemory="${memory}">
<classpath refid="junit.classpath"/>
<assertions>
<enable package="org.apache.mahout"/>