You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Russ Johnston <ru...@staceyshouse.com> on 2007/02/20 23:12:45 UTC

svnant hangs on export

I have been using subversion with eclipse for some time now and today I
started working with svnant. I downloaded it and set up an ant script to do
a simple export:
<?xml version="1.0"?>
<project name="svn-test" basedir="." default="export_framework">
  <path id="project.classpath">
    <pathelement location="D:/download/svnant-1.0.0/lib/svnjavahl.jar" />
    <pathelement location="D:/download/svnant-1.0.0/lib/svnant.jar" />
    <pathelement location="D:/download/svnant-1.0.0/lib/svnClientAdapter.jar"
/>
  </path>
  <taskdef resource="svntask.properties" classpathref="project.classpath"/>
  <target name="export_framework">
    <svn>
      <export srcPath="d:/workspace/framework"
destPath="d:/deployment/framework" />
    </svn>
  </target>
</project>

As you can tell from this, I am on a windows box. The problem is that when I
run the script it gets as far as the export command and then sits there
indefinitely:
Buildfile: D:\workspace\scriptaculous\build.xml
export_framework:
      [svn] Using command line interface
Svn : Exporting
export -r HEAD D:\workspace\framework D:\deployment\framework

I can run the export command on the command line with no problem. I've
searched the net and the mailing list archives but haven't been able to find
anything useful.

Running:
eclipse 3.2.0
subclipse 1.0.3
subversion client 1.3.2

Russ