Use https for backwards checkout and disable server-cert checking and interactive mode

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@900194 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2010-01-17 18:56:17 +00:00
parent 66dd0ae4b8
commit 5e9c0717ca
2 changed files with 4 additions and 4 deletions

View File

@ -99,10 +99,10 @@
<echo>Initial SVN checkout for '${backwards.branch}'...</echo>
<mkdir dir="${backwards.dir}"/>
<exec dir="${backwards.dir}" executable="${svn.exe}" failifexecutionfails="false" failonerror="true">
<arg line="checkout -r ${backwards.rev} --depth empty http://svn.apache.org/repos/asf/lucene/java/branches/${backwards.branch} ${backwards.branch}"/>
<arg line="checkout --trust-server-cert --non-interactive -r ${backwards.rev} --depth empty https://svn.apache.org/repos/asf/lucene/java/branches/${backwards.branch} ${backwards.branch}"/>
</exec>
<exec dir="${backwards.dir}" executable="${svn.exe}" failifexecutionfails="false" failonerror="true">
<arg line="update -r ${backwards.rev} --set-depth infinity ${backwards.branch}/src"/>
<arg line="update --trust-server-cert --non-interactive -r ${backwards.rev} --set-depth infinity ${backwards.branch}/src"/>
</exec>
</sequential>
</target>
@ -111,7 +111,7 @@
<sequential>
<echo>Update backwards branch '${backwards.branch}' to revision ${backwards.rev}...</echo>
<exec dir="${backwards.dir}" executable="${svn.exe}" failifexecutionfails="false" failonerror="true">
<arg line="update -r ${backwards.rev} ${backwards.branch}"/>
<arg line="update --trust-server-cert --non-interactive -r ${backwards.rev} ${backwards.branch}"/>
</exec>
</sequential>
</target>

View File

@ -148,7 +148,7 @@
<sequential>
<mkdir dir="${vocab.dir}"/>
<exec dir="${vocab.dir}" executable="${svn.exe}" failifexecutionfails="false" failonerror="true">
<arg line="checkout -r ${snowball.vocab.rev} ${snowball.vocab.url}"/>
<arg line="checkout --trust-server-cert --non-interactive -r ${snowball.vocab.rev} ${snowball.vocab.url}"/>
</exec>
</sequential>
</target>