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 292691 | Differences between
and this patch

Collapse All | Expand All

(-)META-INF/MANIFEST.MF (-1 / +2 lines)
Lines 14-20 Link Here
14
 org.eclipse.equinox.p2.metadata.generator;resolution:=optional,
14
 org.eclipse.equinox.p2.metadata.generator;resolution:=optional,
15
 org.eclipse.equinox.p2.jarprocessor;bundle-version="[1.0.1,2.0.0)",
15
 org.eclipse.equinox.p2.jarprocessor;bundle-version="[1.0.1,2.0.0)",
16
 org.eclipse.equinox.p2.publisher;bundle-version="1.0.0";resolution:=optional,
16
 org.eclipse.equinox.p2.publisher;bundle-version="1.0.0";resolution:=optional,
17
 org.eclipse.equinox.p2.repository.tools;bundle-version="[1.0.0,2.0.0)";resolution:=optional
17
 org.eclipse.equinox.p2.repository.tools;bundle-version="[1.0.0,2.0.0)";resolution:=optional,
18
 org.eclipse.equinox.p2.director.app;bundle-version="1.0.100"
18
Export-Package: 
19
Export-Package: 
19
 org.eclipse.pde.build,
20
 org.eclipse.pde.build,
20
 org.eclipse.pde.internal.build;x-friends:="org.eclipse.pde.core,org.eclipse.pde.ui,org.eclipse.pde.launching",
21
 org.eclipse.pde.internal.build;x-friends:="org.eclipse.pde.core,org.eclipse.pde.ui,org.eclipse.pde.launching",
(-)scripts/genericTargets.xml (-2 / +19 lines)
Lines 236-245 Link Here
236
		<and><equals arg1="*" arg2="${arch}"/><os family="windows" /></and>
236
		<and><equals arg1="*" arg2="${arch}"/><os family="windows" /></and>
237
	</condition>
237
	</condition>
238
	
238
	
239
	<p2.director 
240
		os="${p2.os}" ws="${p2.ws}" arch="${p2.arch}" 
241
		flavor="${p2.flavor}" 
242
		roaming="true" 
243
		profile="${p2.director.profile}"
244
		metadataRepository="${p2.repo}" 
245
		artifactRepository="${p2.repo}" 
246
		destination="${p2.director.installPath}" 
247
		bundlepool="${p2.director.bundlepool}"
248
		agentLocation="${p2.director.dataArea}">
249
	
250
		<iu id="${p2.director.iu}" version="${p2.director.version}" />
251
	</p2.director>
252
253
	<!--
239
	<java jar="${equinoxLauncherJar}" fork="true" failonerror="false" resultproperty="p2.director.return.code" outputproperty="p2.director.java.output">
254
	<java jar="${equinoxLauncherJar}" fork="true" failonerror="false" resultproperty="p2.director.return.code" outputproperty="p2.director.java.output">
240
		<arg line="-application org.eclipse.equinox.p2.director.app.application" />
255
		<arg line="-application org.eclipse.equinox.p2.director.app.application" />
241
		<arg line="-nosplash" />
256
		<arg line="-nosplash" />
242
		<arg line="--launcher.suppressErrors" />
257
		<arg line="- -launcher.suppressErrors" />
243
		<arg line="-consoleLog" />
258
		<arg line="-consoleLog" />
244
		<arg line="-flavor ${p2.flavor}" />
259
		<arg line="-flavor ${p2.flavor}" />
245
		<arg value="-installIU" />
260
		<arg value="-installIU" />
Lines 271-281 Link Here
271
		<arg line="${p2.director.devMode}"/>
286
		<arg line="${p2.director.devMode}"/>
272
		<sysproperty key="osgi.configuration.area" value="${p2.director.configArea}" />
287
		<sysproperty key="osgi.configuration.area" value="${p2.director.configArea}" />
273
	</java>
288
	</java>
289
	-->
274
	<echo message="${p2.director.java.output}" />
290
	<echo message="${p2.director.java.output}" />
275
	<antcall target="logDirectorCall"/>
291
	<antcall target="logDirectorCall"/>
276
	<condition property="p2.director.error">
292
	<!--<condition property="p2.director.error">
277
		<isfailure code="${p2.director.return.code}" />
293
		<isfailure code="${p2.director.return.code}" />
278
	</condition>
294
	</condition>
295
	-->
279
	<fail if="p2.director.error" message="A Problem occured while running the director." />
296
	<fail if="p2.director.error" message="A Problem occured while running the director." />
280
</target>
297
</target>
281
	
298
	

Return to bug 292691