Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 419f3a35050f34bc0792fb8d185fcf89f236a73c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!--
     Copyright (c) 2010 Eclipse contributors and others.
     All rights reserved. This program and the accompanying materials
     are made available under the terms of the Eclipse Public License v1.0
     which accompanies this distribution, and is available at
     http://www.eclipse.org/legal/epl-v10.html
    
     Contributors:
         Martin Oberhuber (Wind River) - copy from org.eclipse.linuxtools.releng
 -->
<project default="run">

	<target name="init">
	</target>

	<target name="run">
		<!-- TODO: write code that's hooked into o.e.d.commonbuilder.releng's build.xml to do extra configs (eg., for inserting 3rd party libs into plugins)
		-->
	</target>

	<target name="getTestDependencies">
		<!-- Eclipse will be unpacked by default; any other runtime test requirements need to be handled here -->
		<ant target="getUpdateSiteTestDependency"
		     antfile="${relengCommonBuilderDir}/tools/scripts/getDependencies.xml">
			<property name="url" value="${tools.cdt.master.url}" />
			<property name="file" value="${tools.cdt.master.file}" />
			<property name="unpackDest" value="${dropins-home}/cdt/eclipse" />
		</ant>
		<delete dir="${dropins-home}/cdt/eclipse/plugins/org.eclipse.test_3.2.0"/>
		<delete file="${dropins-home}/cdt/eclipse/site.xml"/>
		<ant target="getTestDependency"
		     antfile="${relengCommonBuilderDir}/tools/scripts/getDependencies.xml">
			<property name="url" value="${modeling.emf.runtime.url}" />
			<property name="file" value="${modeling.emf.runtime.file}" />
			<property name="unpackDest" value="${dropins-home}/emf" />
		</ant>
	</target>
</project>

Back to the top