cutting 2002/12/24 11:11:12 Modified: contributions/snowball build.xml default.properties Log: Minor pre-initial-release tweaks. Revision Changes Path 1.5 +15 -0 jakarta-lucene-sandbox/contributions/snowball/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-lucene-sandbox/contributions/snowball/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- build.xml 23 Dec 2002 23:40:30 -0000 1.4 +++ build.xml 24 Dec 2002 19:11:12 -0000 1.5 @@ -192,6 +192,10 @@ <fileset dir="${docs.dest}/"/> </copy> + <copy todir="${dist.dir}/lib"> + <fileset dir="lib"/> + </copy> + <copy todir="${dist.dir}"> <fileset dir="."> <include name="*.txt" /> @@ -239,6 +243,17 @@ <arg value="${build.dir}/${final.name}.jar"/> <arg value="${build.dir}/${final.name}.tar.gz"/> <arg value="${release.host}:${release.path}/${final.name}"/> + </exec> + <exec executable="ssh"> + <arg value="${web.host}"/> + <arg value="rm"/> + <arg value="-rf"/> + <arg value="${web.path}/api"/> + </exec> + <exec executable="scp"> + <arg value="-r"/> + <arg value="${build.javadoc}"/> + <arg value="${web.host}:${web.path}/api"/> </exec> </target> 1.5 +4 -1 jakarta-lucene-sandbox/contributions/snowball/default.properties Index: default.properties =================================================================== RCS file: /home/cvs/jakarta-lucene-sandbox/contributions/snowball/default.properties,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- default.properties 23 Dec 2002 23:40:30 -0000 1.4 +++ default.properties 24 Dec 2002 19:11:12 -0000 1.5 @@ -1,6 +1,6 @@ Name=Snowball name=snowball -version=0.1-dev +version=0.2-dev final.name=${name}-${version} year=2002 @@ -18,6 +18,9 @@ release.host=www.apache.org release.path=/www/jakarta.apache.org/builds/jakarta-lucene-sandbox/snowball + +web.host=www.apache.org +web.path=/www/jakarta.apache.org/lucene/docs/lucene-sandbox/snowball test.src.dir = ./src/test test.build.dir = ${build.dir}/test
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>