Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[egit-dev] Git Fetch Factory

Hi,
I am trying to build CDT from git clone using Git Fetch Factory.

I put the fetch factory jars to basebuilder/plugins folder and got cdt.map generated correctly AFAICS. I am using the latest basebuilder R37_M7 but it's still generating fetch.xml with "FetchFromCVS". 

Any idea what I might be missing? Here is excerpt from my cdt.map file:

! The master
feature@xxxxxxxxxxxxxxx.master=GIT,tag=sd80,repo=https://github.com/angvoz/SD80.git,path=org.eclipse.cdt/releng/org.eclipse.cdt.master

! Cross platform
plugin@xxxxxxxxxxxxxxxxxxxx=GIT,tag=sd80,repo=https://github.com/angvoz/SD80.git,path=org.eclipse.cdt/all/org.eclipse.cdt.core
plugin@xxxxxxxxxxxxxxxxxx=GIT,tag=sd80,repo=https://github.com/angvoz/SD80.git,path=org.eclipse.cdt/all/org.eclipse.cdt.ui

Here is what got generated in org.eclipse.cdt.master.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Fetch script for feature@xxxxxxxxxxxxxxx.master -->

<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.cdt.master/feature.xml" file="${buildDirectory}/features/org.eclipse.cdt.master/feature.xml"		/>
		<cvspass cvsRoot="tag=sd80" password="repo=https://github.com/angvoz/SD80.git"		/>
		<antcall target="FetchFromCVS">
			<param name="elementName" value="org.eclipse.cdt.master"/>
			<param name="quiet" value="${cvs.quiet}"/>
			<param name="cvsRoot" value="tag=sd80"/>
			<param name="fileToCheck" value="${buildDirectory}/features/org.eclipse.cdt.master/feature.xml"/>
			<param name="tag" value="GIT"/>
			<param name="reallyquiet" value="${cvs.reallyquiet}"/>
			<param name="destinationFolder" value="${buildDirectory}/features"/>
			<param name="module" value="path=org.eclipse.cdt/releng/org.eclipse.cdt.master"/>
		</antcall>
	</target>
	<target name="fetch.plugins" if="featureAndPlugins">

At that point I am stuck, any idea where to look next?

Thanks,
Andrew

Thanks,
Andrew

Back to the top