1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

Add Orbit dependency for runtime

This commit is contained in:
Martin Oberhuber 2008-01-25 01:58:17 +00:00
parent 048d343797
commit d9572a83cb

View file

@ -78,6 +78,22 @@
<property name="file" value="${emfFile}" />
<property name="isUnpackedFile" value="${buildDirectory}/plugins/org.eclipse.emf.ecore/plugin.xml" />
</ant>
<!-- Important: This must be the last dependency downloaded, because the
getDependency target strips versions from all plug-ins -->
<echo message="Download Orbit Bundles ..." />
<ant target="getBundle" antfile="${buildDirectory}/../org.eclipse.modeling.common.releng/scripts/getDependenciesHelper.xml">
<property name="url" value="${orbitURL}"/>
<property name="file" value="${orbitFile}"/>
</ant>
<echo message="Unpack selected jars ..." />
<unzip dest="${buildDirectory}/.." src="${downloadsDir}/${orbitFile}">
<patternset>
<include name="**/org.apache.oro*.jar"/>
<include name="**/org.apache.commons.net*.jar"/>
</patternset>
</unzip>
</target>
<!-- ===================================================================== -->