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}/"/>
|
||||
</copy>
|
||||
|
||||
<copy todir="${dist.dir}/lib">
|
||||
<fileset dir="lib"/>
|
||||
</copy>
|
||||
|
||||
<copy todir="${dist.dir}">
|
||||
<fileset dir=".">
|
||||
<include name="*.txt" />
|
||||
|
@ -240,6 +244,17 @@
|
|||
<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,6 +1,6 @@
|
|||
Name=Snowball
|
||||
name=snowball
|
||||
version=0.1-dev
|
||||
version=0.2-dev
|
||||
final.name=${name}-${version}
|
||||
year=2002
|
||||
|
||||
|
@ -19,6 +19,9 @@ dist.dir=${build.dir}/${final.name}
|
|||
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
|
||||
test.build.classes = ${test.build.dir}/classes
|
||||
|
|
Loading…
Reference in New Issue