Bug 117483

Summary: The classpath for the resources-ant.jar script has to be updated
Product: [Eclipse Project] Platform Reporter: Oleg Besedin <ob1.eclipse>
Component: ResourcesAssignee: John Arthorne <john.arthorne>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: aniefer
Version: 3.2   
Target Milestone: 3.2 M4   
Hardware: PC   
OS: Windows XP   
Whiteboard:
Attachments:
Description Flags
Patch for the org.eclipse.core.resources none

Description Oleg Besedin CLA 2005-11-22 09:14:08 EST
The file org.eclipse.core.resources/scripts/buildExtraJAR.xml contains explicit list of paths for the javac command. 

There are at least two problems with it.

First, due to the runtime split the following plugins have to be added to the path:
   org.eclipse.core.jobs
   org.eclipse.equinox.common

Secondly, it won't work anyway as the jar files are generated with qualifier versions - the actual jar names are:
   org.eclipse.equinox.common_1.0.0.N20051121-0010.jar
   org.eclipse.osgi_3.2.0.N20051121-0010.jar
and, of course, they change with every build.
Comment 1 Oleg Besedin CLA 2005-11-22 10:21:16 EST
Created attachment 30378 [details]
Patch for the org.eclipse.core.resources

Added a possible patch for this problem (used the approach from the org.eclipse.ant.core).
Comment 2 John Arthorne CLA 2005-11-23 11:07:33 EST
Thanks Oleg, patch released.