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

A proverb that is used to imply that you have unexpectedly faced a big problem

RSA find public exponent

How much damage would a cupful of neutron star matter do to the Earth?

Test print coming out spongy

Why weren't discrete x86 CPUs ever used in game hardware?

Is multiple magic items in one inherently imbalanced?

What initially awakened the Balrog?

Select every other edge (they share a common vertex)

Why datecode is SO IMPORTANT to chip manufacturers?

Connecting Mac Book Pro 2017 to 2 Projectors via USB C

Did any compiler fully use 80-bit floating point?

Monty Hall Problem-Probability Paradox

What adaptations would allow standard fantasy dwarves to survive in the desert?

The Nth Gryphon Number

Flight departed from the gate 5 min before scheduled departure time. Refund options

Can an iPhone 7 be made to function as a NFC Tag?

Plot data from external file with floating numbers

How were pictures turned from film to a big picture in a picture frame before digital scanning?

Converted a Scalar function to a TVF function for parallel execution-Still running in Serial mode

Is there hard evidence that the grant peer review system performs significantly better than random?

Why is a lens darker than other ones when applying the same settings?

Resize vertical bars (absolute-value symbols)

Why not send Voyager 3 and 4 following up the paths taken by Voyager 1 and 2 to re-transmit signals of later as they fly away from Earth?

What order were files/directories output in dir?



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;








1















Plugins need to be configured to build against specific JDK version.
How can I change the version of Java that my plugin uses?










share|improve this question



















  • 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 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











  • 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















Plugins need to be configured to build against specific JDK version.
How can I change the version of Java that my plugin uses?










share|improve this question



















  • 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 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











  • 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








1








Plugins need to be configured to build against specific JDK version.
How can I change the version of Java that my plugin uses?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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











  • 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





    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












  • 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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해