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 "Plug-in Development Environment"

m (PDE moved to Plug-in Development Environment)
(Redirect to PDE.)
 
(11 intermediate revisions by 6 users not shown)
Line 1: Line 1:
==Plug-in Development Environment==
+
#REDIRECT [[PDE]]
 
+
This provides the tools on top of the JDT to develop plugins.
+
 
+
===Adding 3rd Party Jar files===
+
 
+
Option 1: turn the jars into plugins
+
 
+
Use New>Project>Plug-in Development>Plug-in from existing JAR archive. That will turn one or more jar files into a single jar plugin. For something like log4j you can then set up Buddy-Classloading, etc.
+
 
+
Option 2: include the jars in a plugin
+
 
+
# Use Import>File System to import the jar files into your plugin project, say in the <project>/lib directory.
+
# Use "Add..." to add the jars to the classpath section of the PDE Editor>Runtime tab.
+
# Use "New..." to add "." library back (with no quotes, of course).
+
# Make sure your binary build exports the new jar files on the PDE Editor>Build tab.
+
# Save
+
# On the project, use the popup menu>PDE Tools>Update Classpath to correctly add the jars to the eclipse project classpath.
+
# Export any packages that you need to using the PDE Editor>Runtime tab
+
# Save
+
 
+
Check out https://bugs.eclipse.org/bugs/show_bug.cgi?id=108781
+
 
+
It talks about how adding a 3rd party jar removes the default "." classpath, and the need to add it back.
+
 
+
Also, eclipse can handle jars within jars.  It expands them into a temporary location during runtime.
+

Latest revision as of 07:45, 31 December 2007

Redirect to:

Back to the top