eclipse antsvn export task fails

799 Views Asked by At

I’m creating the following build file, in order to retrieve my project from the SVN repository:

<?xml version="1.0"?>
<project name="svn-test_2" default="checkoutThis" basedir=".">
    <property file="build.svn.properties" />
    <taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask" />
    <target name="checkoutThis">
        <svn javahl="false" svnkit="true" username="${svn.username}" password="${svn.password}">
            <export srcurl="${svn.repository.url}" destPath="${svnant.destination.url}" force='true'/>
        </svn>
    </target>
</project>

I’m using SvnAnt version 1.2, Subversion server 1.6 and Subclipse 1.6.

The output is an error:

checkoutThis:
    [svn] <Export> started ...
    [svn] svn: Processing REPORT request response failed: XML document structures must start and end within the same entity. (/repos/wiam11g/!svn/vcc/default) 
    [svn] svn: REPORT request failed on '/repos/wiam11g/!svn/vcc/default'
    [svn] svn: Processing REPORT request response failed: XML document structures must start and end within the same entity. (/repos/wiam11g/!svn/vcc/default) 
    [svn] svn: REPORT request failed on '/repos/wiam11g/!svn/vcc/default'
    [svn] <Export> failed !
BUILD FAILED

How can I fix this?

0

There are 0 best solutions below