How can I change the Java version for my Eclipse plugin? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How do I read / convert an InputStream into a String in Java?How can you speed up Eclipse?How do I generate random integers within a specific range in Java?How do I break out of nested loops in Java?“Debug certificate expired” error in Eclipse Android pluginsHow to avoid Java code in JSP files?How do I convert a String to an int in Java?Why is subtracting these two times (in 1927) giving a strange result?How to fix java.lang.UnsupportedClassVersionError: Unsupported major.minor versionCan't start Eclipse - Java was started but returned exit code=13
AppleTVs create a chatty alternate WiFi network
What is the chair depicted in Cesare Maccari's 1889 painting "Cicerone denuncia Catilina"?
Is there hard evidence that the grant peer review system performs significantly better than random?
NERDTreeMenu Remapping
Positioning dot before text in math mode
Why is it faster to reheat something than it is to cook it?
Project Euler #1 in C++
GDP with Intermediate Production
Random body shuffle every night—can we still function?
One-one communication
How can a team of shapeshifters communicate?
Why is std::move not [[nodiscard]] in C++20?
How to write capital alpha?
How do living politicians protect their readily obtainable signatures from misuse?
How would you say "es muy psicólogo"?
Sally's older brother
Should a wizard buy fine inks every time he want to copy spells into his spellbook?
What are the main differences between Stargate SG-1 cuts?
A proverb that is used to imply that you have unexpectedly faced a big problem
Select every other edge (they share a common vertex)
Did Mueller's report provide an evidentiary basis for the claim of Russian govt election interference via social media?
Does the Mueller report show a conspiracy between Russia and the Trump Campaign?
Universal covering space of the real projective line?
How much damage would a cupful of neutron star matter do to the Earth?
How can I change the Java version for my Eclipse plugin?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How do I read / convert an InputStream into a String in Java?How can you speed up Eclipse?How do I generate random integers within a specific range in Java?How do I break out of nested loops in Java?“Debug certificate expired” error in Eclipse Android pluginsHow to avoid Java code in JSP files?How do I convert a String to an int in Java?Why is subtracting these two times (in 1927) giving a strange result?How to fix java.lang.UnsupportedClassVersionError: Unsupported major.minor versionCan't start Eclipse - Java was started but returned exit code=13
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Plugins need to be configured to build against specific JDK version.
How can I change the version of Java that my plugin uses?
java eclipse eclipse-plugin
add a comment |
Plugins need to be configured to build against specific JDK version.
How can I change the version of Java that my plugin uses?
java eclipse eclipse-plugin
1
A plug-in can't use a different version of Java from the rest of the application. It can specify a minimum version that it requires.
– greg-449
Mar 22 at 11:49
As @greg-449 already said, the minimum Java version can be set in theMANIFEST.MF
e.g. with a line likeBundle-RequiredExecutionEnvironment: JavaSE-1.8
. But as far as I know there is nothing for the maximum version (which might be a problem when things are not only added but also removed from the JRE which is the case since Java 9). Since a Plug-in project is an extended Java project you can configure a specific JRE in Project > Properties (which I guess will be ignored when using Tycho for building).
– howlger
Mar 22 at 12:06
may I update a plugin or reinstall it to increase the minimal version?
– Mike U
Mar 22 at 12:18
Updating a plugin (with a new version number) can change its settings. Note that the plugin will not be run if it requests a version of Java higher than the one being used to run the app.
– greg-449
Mar 22 at 12:33
Some of the plugins are configured to build against JDK 1.6, although my machine is by default bundled with JDK 1.8. Could I force them to be built against v 1.8?
– Mike U
Mar 22 at 12:53
add a comment |
Plugins need to be configured to build against specific JDK version.
How can I change the version of Java that my plugin uses?
java eclipse eclipse-plugin
Plugins need to be configured to build against specific JDK version.
How can I change the version of Java that my plugin uses?
java eclipse eclipse-plugin
java eclipse eclipse-plugin
edited Mar 22 at 11:53
Karol Dowbecki
26.9k93860
26.9k93860
asked Mar 22 at 11:47
Mike UMike U
62
62
1
A plug-in can't use a different version of Java from the rest of the application. It can specify a minimum version that it requires.
– greg-449
Mar 22 at 11:49
As @greg-449 already said, the minimum Java version can be set in theMANIFEST.MF
e.g. with a line likeBundle-RequiredExecutionEnvironment: JavaSE-1.8
. But as far as I know there is nothing for the maximum version (which might be a problem when things are not only added but also removed from the JRE which is the case since Java 9). Since a Plug-in project is an extended Java project you can configure a specific JRE in Project > Properties (which I guess will be ignored when using Tycho for building).
– howlger
Mar 22 at 12:06
may I update a plugin or reinstall it to increase the minimal version?
– Mike U
Mar 22 at 12:18
Updating a plugin (with a new version number) can change its settings. Note that the plugin will not be run if it requests a version of Java higher than the one being used to run the app.
– greg-449
Mar 22 at 12:33
Some of the plugins are configured to build against JDK 1.6, although my machine is by default bundled with JDK 1.8. Could I force them to be built against v 1.8?
– Mike U
Mar 22 at 12:53
add a comment |
1
A plug-in can't use a different version of Java from the rest of the application. It can specify a minimum version that it requires.
– greg-449
Mar 22 at 11:49
As @greg-449 already said, the minimum Java version can be set in theMANIFEST.MF
e.g. with a line likeBundle-RequiredExecutionEnvironment: JavaSE-1.8
. But as far as I know there is nothing for the maximum version (which might be a problem when things are not only added but also removed from the JRE which is the case since Java 9). Since a Plug-in project is an extended Java project you can configure a specific JRE in Project > Properties (which I guess will be ignored when using Tycho for building).
– howlger
Mar 22 at 12:06
may I update a plugin or reinstall it to increase the minimal version?
– Mike U
Mar 22 at 12:18
Updating a plugin (with a new version number) can change its settings. Note that the plugin will not be run if it requests a version of Java higher than the one being used to run the app.
– greg-449
Mar 22 at 12:33
Some of the plugins are configured to build against JDK 1.6, although my machine is by default bundled with JDK 1.8. Could I force them to be built against v 1.8?
– Mike U
Mar 22 at 12:53
1
1
A plug-in can't use a different version of Java from the rest of the application. It can specify a minimum version that it requires.
– greg-449
Mar 22 at 11:49
A plug-in can't use a different version of Java from the rest of the application. It can specify a minimum version that it requires.
– greg-449
Mar 22 at 11:49
As @greg-449 already said, the minimum Java version can be set in the
MANIFEST.MF
e.g. with a line like Bundle-RequiredExecutionEnvironment: JavaSE-1.8
. But as far as I know there is nothing for the maximum version (which might be a problem when things are not only added but also removed from the JRE which is the case since Java 9). Since a Plug-in project is an extended Java project you can configure a specific JRE in Project > Properties (which I guess will be ignored when using Tycho for building).– howlger
Mar 22 at 12:06
As @greg-449 already said, the minimum Java version can be set in the
MANIFEST.MF
e.g. with a line like Bundle-RequiredExecutionEnvironment: JavaSE-1.8
. But as far as I know there is nothing for the maximum version (which might be a problem when things are not only added but also removed from the JRE which is the case since Java 9). Since a Plug-in project is an extended Java project you can configure a specific JRE in Project > Properties (which I guess will be ignored when using Tycho for building).– howlger
Mar 22 at 12:06
may I update a plugin or reinstall it to increase the minimal version?
– Mike U
Mar 22 at 12:18
may I update a plugin or reinstall it to increase the minimal version?
– Mike U
Mar 22 at 12:18
Updating a plugin (with a new version number) can change its settings. Note that the plugin will not be run if it requests a version of Java higher than the one being used to run the app.
– greg-449
Mar 22 at 12:33
Updating a plugin (with a new version number) can change its settings. Note that the plugin will not be run if it requests a version of Java higher than the one being used to run the app.
– greg-449
Mar 22 at 12:33
Some of the plugins are configured to build against JDK 1.6, although my machine is by default bundled with JDK 1.8. Could I force them to be built against v 1.8?
– Mike U
Mar 22 at 12:53
Some of the plugins are configured to build against JDK 1.6, although my machine is by default bundled with JDK 1.8. Could I force them to be built against v 1.8?
– Mike U
Mar 22 at 12:53
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55298924%2fhow-can-i-change-the-java-version-for-my-eclipse-plugin%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55298924%2fhow-can-i-change-the-java-version-for-my-eclipse-plugin%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
A plug-in can't use a different version of Java from the rest of the application. It can specify a minimum version that it requires.
– greg-449
Mar 22 at 11:49
As @greg-449 already said, the minimum Java version can be set in the
MANIFEST.MF
e.g. with a line likeBundle-RequiredExecutionEnvironment: JavaSE-1.8
. But as far as I know there is nothing for the maximum version (which might be a problem when things are not only added but also removed from the JRE which is the case since Java 9). Since a Plug-in project is an extended Java project you can configure a specific JRE in Project > Properties (which I guess will be ignored when using Tycho for building).– howlger
Mar 22 at 12:06
may I update a plugin or reinstall it to increase the minimal version?
– Mike U
Mar 22 at 12:18
Updating a plugin (with a new version number) can change its settings. Note that the plugin will not be run if it requests a version of Java higher than the one being used to run the app.
– greg-449
Mar 22 at 12:33
Some of the plugins are configured to build against JDK 1.6, although my machine is by default bundled with JDK 1.8. Could I force them to be built against v 1.8?
– Mike U
Mar 22 at 12:53