Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[dash-dev] SVN Fetching

Title: SVN Fetching
I’m running into the exact issue described in this forum post: http://www.eclipse.org/forums/index.php?t=msg&goto=482228& when trying to build the VTP project.  Can someone with shell access please see if this is the case for me as well?  The file that gets generated for me looks like:

<?xml version="1.0" encoding="UTF-8"?>

<!-- Fetch script for feature@xxxxxxxxxxxxxxxxxxxxxxxxxxx -->

<project name="FetchScript" default="fetch">
 <property name="quiet" value="true"/>

 <target name="fetch">
  <antcall target="fetch.element"/>
  <antcall target="fetch.plugins"/>
  <antcall target="fetch.recursively"/>
 </target>
 <target name="fetch.element" if="featureOnly">
  <available property="${buildDirectory}/features/org.eclipse.vtp.feature.all/feature.xml" file="${buildDirectory}/features/org.eclipse.vtp.feature.all/feature.xml"  />
  <antcall target="FetchFromSVN">
   <param name="svnRoot" value="http://dev.eclipse.org/svnroot/technology/org.eclipse.vtp/Releng/trunk"/>
   <param name="postTagPath" value="/org.eclipse.vtp.feature.all"/>
   <param name="destinationFolder" value="${buildDirectory}/features"/>
   <param name="preTagPath" value=""/>
   <param name="tagPath" value="/"/>
   <param name="elementName" value="org.eclipse.vtp.feature.all"/>
   <param name="fileToCheck" value="${buildDirectory}/features/org.eclipse.vtp.feature.all/feature.xml"/>
   <param name="revision" value="HEAD"/>
  </antcall>
 </target>
 <target name="fetch.plugins" if="featureAndPlugins">

It abruptly ends at this point in the XML.  Thanks.

Trip

Back to the top