Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    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 08:49 Go to next message
Elena Kyorova is currently offline Elena KyorovaFriend
Messages: 2
Registered: September 2020
Junior Member
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 09:30 Go to previous messageGo to next message
Nitin Dahyabhai is currently offline Nitin DahyabhaiFriend
Messages: 4430
Registered: July 2009
Senior Member

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?

_
Nitin Dahyabhai
Eclipse Web Tools Platform
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 10:49 Go to previous message
Elena Kyorova is currently offline Elena KyorovaFriend
Messages: 2
Registered: September 2020
Junior Member
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: Fri Mar 29 10:24:28 GMT 2024

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

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

Back to the top