You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

Eclipse Tools

Adding javaws.jar and plugin.jar to Eclipse classpath

Apple moved the javaws.jar and plugin.jar files to /System/Library/Frameworks/JavaVM.framework/Resources/Deploy.bundle/Contents/Home/lib in Java 6. Eclipse does not (currently) support traversing into bundles, so it is not possible to use the Eclipse GUI to add these libraries to the default JDK classpath. However, they can be manually added by editing the libraryInfos.xml configuration file:

<workspace_root>/.metadata/.plugins/org.eclipse.jdt.launching/libraryInfos.xml

Add entries for javaws.jar and plugin.jar to the <libraryInfo> elements for JDK 1.6/1.6.0:

<entry path="/System/Library/Frameworks/JavaVM.framework/Resources/Deploy.bundle/Contents/Home/lib/plugin.jar"/>
<entry path="/System/Library/Frameworks/JavaVM.framework/Resources/Deploy.bundle/Contents/Home/lib/javaws.jar"/>

  • No labels