1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[releng] preFetchOrbitSource

This commit is contained in:
Martin Oberhuber 2008-09-17 00:19:32 +00:00
parent 7c1cf7e9c0
commit 57340873c8

View file

@ -321,7 +321,38 @@
</ant>
</target>
<target name="preFetch" depends="preFetchOrbitBundles">
<target name="preFetchOrbitSource" depends="myInit">
<!-- fetch Orbit stuff since I'm not sure how to get sources -->
<mkdir dir="${buildDirectory}/plugins"/>
<eclipse.fetch
elements="plugin@org.apache.oro.source"
buildDirectory="${buildDirectory}"
directory="${buildDirectory}/directory.txt"
fetchTag=""
configInfo="*,*,*"
baseLocation="${baseLocation}"
/>
<!-- Run generated fetch script -->
<ant antfile="${buildDirectory}/fetch_org.apache.oro.source.xml">
<property name="featureOnly" value="true"/>
<property name="featureAndPlugins" value="true"/>
</ant>
<eclipse.fetch
elements="plugin@org.apache.commons.net.source"
buildDirectory="${buildDirectory}"
directory="${buildDirectory}/directory.txt"
fetchTag=""
configInfo="*,*,*"
baseLocation="${baseLocation}"
/>
<!-- Run generated fetch script -->
<ant antfile="${buildDirectory}/fetch_org.apache.commons.net.source.xml">
<property name="featureOnly" value="true"/>
<property name="featureAndPlugins" value="true"/>
</ant>
</target>
<target name="preFetch" depends="preFetchOrbitBundles,preFetchOrbitSource">
</target>
<!-- ===================================================================== -->