Skip to main content



      Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » Is there are way to set max supported version of eclipse for Eclipse plugin?
Is there are way to set max supported version of eclipse for Eclipse plugin? [message #1833039] Thu, 01 October 2020 04:49 Go to next message
Eclipse UserFriend
A plugin that we are currently supporting is not working for last version of Eclipse 2020-09 (4.17.0). Can we configure this plugin not to support this specific eclipse version and prevent it from being installed for Eclipse 2020-09 (4.17.0)?

I tried changing Manifest file and set Bundle-RequiredExecutionEnvironment to Java-SE1.8 and putting a closed range of versions in Require-Bundle modules but that does not seem to work.

I am attaching my changed Manifest file:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.xxx.xxx;singleton:=true
Bundle-Version: 0.0.0
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-Vendor: %pluginProvider
Bundle-Localization: plugin
Export-Package: com.xxx.xxx
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.15.200,3.15.200]",
org.eclipse.jface;bundle-version="[3.15.100,3.15.100]",
org.eclipse.swt;bundle-version="[3.110.0,3.110.0]",
org.eclipse.equinox.common;bundle-version="[3.10.300,3.10.300]"
Main-Class: com.xxx.xxx.MainClass
Import-Package: org.eclipse.ui
Re: Is there are way to set max supported version of eclipse for Eclipse plugin? [message #1833042 is a reply to message #1833039] Thu, 01 October 2020 05:30 Go to previous messageGo to next message
Eclipse UserFriend
It might be more productive to solve the original problem of why it's "not working." In what way is it "not working" on the new release?
Re: Is there are way to set max supported version of eclipse for Eclipse plugin? [message #1833049 is a reply to message #1833042] Thu, 01 October 2020 06:49 Go to previous message
Eclipse UserFriend
In order to make the plugin work for the new Eclipse version, we need to refactor the plugin code itself, add additional libraries and optimize the performance. Since this would take some time, we were wondering if there is way to block installation of plugin until we make the plugin work for the new version.
Previous Topic:I can't run Eclipse IDE
Next Topic:Error when starting Runtime Eclipse
Goto Forum:
  


Current Time: Wed Jul 02 22:08:15 EDT 2025

Powered by FUDForum. Page generated in 0.04456 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top