Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Linux Tools Project/Eclipse Build/Inner Workings"

Line 1: Line 1:
= Eclipse Build Inner Workings =
 
 
 
Given an archive with Eclipse SDK sources Eclipse Build will extract the sources and remove all the pre-built OSGI jars, but collects all the OSGI metadata (contained in MANIFEST.MF files). Then Eclipse Build tries use jars provided by the system, verifying that versions match the OSGI information provided in the eclipse sources archive.  
 
Given an archive with Eclipse SDK sources Eclipse Build will extract the sources and remove all the pre-built OSGI jars, but collects all the OSGI metadata (contained in MANIFEST.MF files). Then Eclipse Build tries use jars provided by the system, verifying that versions match the OSGI information provided in the eclipse sources archive.  
  
Line 6: Line 4:
  
 
== Searching for System Jars ==
 
== Searching for System Jars ==
 +
 +
The following Java files are used to define ant tasks which perform the version verification and symlinking of the system jars
 +
<code>
 +
<pre>
 +
task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkInstalledOSGiJars.java
 +
task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
 +
task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkNonOSGiJars.java
 +
</pre>
 +
</code>

Revision as of 09:50, 6 July 2011

Given an archive with Eclipse SDK sources Eclipse Build will extract the sources and remove all the pre-built OSGI jars, but collects all the OSGI metadata (contained in MANIFEST.MF files). Then Eclipse Build tries use jars provided by the system, verifying that versions match the OSGI information provided in the eclipse sources archive.

Removing Prebuilt Jars

Searching for System Jars

The following Java files are used to define ant tasks which perform the version verification and symlinking of the system jars

task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkInstalledOSGiJars.java
task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkNonOSGiJars.java

Back to the top