mirror of https://github.com/apache/lucene.git
Minor pre-initial-release tweaks.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150872 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2cd31cd326
commit
51c123070c
|
@ -192,6 +192,10 @@
|
||||||
<fileset dir="${docs.dest}/"/>
|
<fileset dir="${docs.dest}/"/>
|
||||||
</copy>
|
</copy>
|
||||||
|
|
||||||
|
<copy todir="${dist.dir}/lib">
|
||||||
|
<fileset dir="lib"/>
|
||||||
|
</copy>
|
||||||
|
|
||||||
<copy todir="${dist.dir}">
|
<copy todir="${dist.dir}">
|
||||||
<fileset dir=".">
|
<fileset dir=".">
|
||||||
<include name="*.txt" />
|
<include name="*.txt" />
|
||||||
|
@ -240,6 +244,17 @@
|
||||||
<arg value="${build.dir}/${final.name}.tar.gz"/>
|
<arg value="${build.dir}/${final.name}.tar.gz"/>
|
||||||
<arg value="${release.host}:${release.path}/${final.name}"/>
|
<arg value="${release.host}:${release.path}/${final.name}"/>
|
||||||
</exec>
|
</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>
|
</target>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Name=Snowball
|
Name=Snowball
|
||||||
name=snowball
|
name=snowball
|
||||||
version=0.1-dev
|
version=0.2-dev
|
||||||
final.name=${name}-${version}
|
final.name=${name}-${version}
|
||||||
year=2002
|
year=2002
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ dist.dir=${build.dir}/${final.name}
|
||||||
release.host=www.apache.org
|
release.host=www.apache.org
|
||||||
release.path=/www/jakarta.apache.org/builds/jakarta-lucene-sandbox/snowball
|
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.src.dir = ./src/test
|
||||||
test.build.dir = ${build.dir}/test
|
test.build.dir = ${build.dir}/test
|
||||||
test.build.classes = ${test.build.dir}/classes
|
test.build.classes = ${test.build.dir}/classes
|
||||||
|
|
Loading…
Reference in New Issue