Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 202418
Collapse All | Expand All

(-)builder/sdk/customTargets.xml (-6 / +1 lines)
Lines 69-75 Link Here
69
	<!-- ===================================================================== -->
69
	<!-- ===================================================================== -->
70
	<target name="postSetup">
70
	<target name="postSetup">
71
		<!-- TODO: if your project requires more dependencies, add them here -->
71
		<!-- TODO: if your project requires more dependencies, add them here -->
72
		<echo message="Download, then unpack: Eclipse, EMF, Net4j, OCL ..." />
72
		<echo message="Download, then unpack: Eclipse, EMF, Net4j ..." />
73
		<ant target="getDependency" antfile="${buildDirectory}/../org.eclipse.modeling.common.releng/scripts/getDependencies.xml">
73
		<ant target="getDependency" antfile="${buildDirectory}/../org.eclipse.modeling.common.releng/scripts/getDependencies.xml">
74
			<property name="url" value="${eclipseURL}" />
74
			<property name="url" value="${eclipseURL}" />
75
			<property name="file" value="${eclipseFile}" />
75
			<property name="file" value="${eclipseFile}" />
Lines 85-95 Link Here
85
			<property name="file" value="${net4jFile}" />
85
			<property name="file" value="${net4jFile}" />
86
			<property name="isUnpackedFile" value="${buildDirectory}/plugins/org.eclipse.net4j/plugin.xml" />
86
			<property name="isUnpackedFile" value="${buildDirectory}/plugins/org.eclipse.net4j/plugin.xml" />
87
		</ant>
87
		</ant>
88
		<ant target="getDependency" antfile="${buildDirectory}/../org.eclipse.modeling.common.releng/scripts/getDependencies.xml">
89
			<property name="url" value="${oclURL}" />
90
			<property name="file" value="${oclFile}" />
91
			<property name="isUnpackedFile" value="${buildDirectory}/plugins/org.eclipse.emf.ocl/plugin.xml" />
92
		</ant>
93
	</target>
88
	</target>
94
89
95
	<!-- ===================================================================== -->
90
	<!-- ===================================================================== -->
(-)builder/tests/scripts/test.xml (-6 / +1 lines)
Lines 33-39 Link Here
33
		<delete dir="${install}" /><mkdir dir="${install}" />
33
		<delete dir="${install}" /><mkdir dir="${install}" />
34
		
34
		
35
		<!-- TODO: if your project requires more dependencies, add them here; if it does not require all of these, remove those not required -->
35
		<!-- TODO: if your project requires more dependencies, add them here; if it does not require all of these, remove those not required -->
36
		<echo message="Download, then unpack: Eclipse, EMF, Net4j, OCL ..."/>
36
		<echo message="Download, then unpack: Eclipse, EMF, Net4j ..."/>
37
		<property name="common.releng.dir" value="${basedir}/../../../org.eclipse.modeling.common.releng"/>
37
		<property name="common.releng.dir" value="${basedir}/../../../org.eclipse.modeling.common.releng"/>
38
		<property name="getTestDependencies.xml" value="${common.releng.dir}/scripts/getTestDependencies.xml"/>
38
		<property name="getTestDependencies.xml" value="${common.releng.dir}/scripts/getTestDependencies.xml"/>
39
		<ant target="getTestDependency" antfile="${getTestDependencies.xml}" dir="${common.releng.dir}">
39
		<ant target="getTestDependency" antfile="${getTestDependencies.xml}" dir="${common.releng.dir}">
Lines 51-61 Link Here
51
			<property name="file" value="${net4jFile}" />
51
			<property name="file" value="${net4jFile}" />
52
			<property name="unpackDest" value="${install}"/>
52
			<property name="unpackDest" value="${install}"/>
53
		</ant>
53
		</ant>
54
		<ant target="getTestDependency" antfile="${getTestDependencies.xml}" dir="${common.releng.dir}">
55
			<property name="url" value="${oclURL}" />
56
			<property name="file" value="${oclFile}" />
57
			<property name="unpackDest" value="${install}"/>
58
		</ant>
59
		
54
		
60
		<property name="dir" location="."/>
55
		<property name="dir" location="."/>
61
		<echo message="Unpack SDK + JUnit Tests (${dir}/emft-*.zip) ..."/>		
56
		<echo message="Unpack SDK + JUnit Tests (${dir}/emft-*.zip) ..."/>		
(-)builder/tests/customTargets.xml (-6 / +1 lines)
Lines 67-84 Link Here
67
<!-- ===================================================================== -->
67
<!-- ===================================================================== -->
68
<target name="postSetup">
68
<target name="postSetup">
69
	<property name="getDeps.xml" location="${buildDirectory}/../org.eclipse.emft.common.releng/scripts/getDependencies.xml"/>
69
	<property name="getDeps.xml" location="${buildDirectory}/../org.eclipse.emft.common.releng/scripts/getDependencies.xml"/>
70
		<echo message="Download, then unpack: Net4j SDK, OCL SDK, EMF SDK + Eclipse SDK..."/>
70
		<echo message="Download, then unpack: Net4j SDK, EMF SDK + Eclipse SDK..."/>
71
	<ant target="getDependency" antfile="${getDeps.xml}">
71
	<ant target="getDependency" antfile="${getDeps.xml}">
72
		<property name="url" value="${net4jURL}"/>
72
		<property name="url" value="${net4jURL}"/>
73
		<property name="file" value="${net4jFile}"/>
73
		<property name="file" value="${net4jFile}"/>
74
		<property name="isUnpackedFile" value="${buildDirectory}/plugins/org.eclipse.net4j/plugin.xml" />
74
		<property name="isUnpackedFile" value="${buildDirectory}/plugins/org.eclipse.net4j/plugin.xml" />
75
	</ant>
75
	</ant>
76
	<ant target="getDependency" antfile="${getDeps.xml}">
76
	<ant target="getDependency" antfile="${getDeps.xml}">
77
		<property name="url" value="${oclURL}"/>
78
		<property name="file" value="${oclFile}"/>
79
		<property name="isUnpackedFile" value="${buildDirectory}/plugins/org.eclipse.emf.ocl/plugin.xml"/>
80
	</ant>
81
	<ant target="getDependency" antfile="${getDeps.xml}">
82
		<property name="url" value="${emfURL}"/>
77
		<property name="url" value="${emfURL}"/>
83
		<property name="file" value="${emfFile}"/>
78
		<property name="file" value="${emfFile}"/>
84
		<property name="isUnpackedFile" value="${buildDirectory}/plugins/org.eclipse.emf.ecore/plugin.xml"/>
79
		<property name="isUnpackedFile" value="${buildDirectory}/plugins/org.eclipse.emf.ecore/plugin.xml"/>

Return to bug 202418