Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added JDT Java compiler entry for removed Java 7 support in ecj #213

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions news/4.33/jdt.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,21 @@ <h2>Java Views and Dialogs</h2>
<h2>Java Compiler</h2>
</td>
</tr>

<tr id="removed-support-for-java7-and-below">
<td class="title"><a href="#removed-support-for-java7-and-below">Removed support for souce, target and release Java 7 and below</a></td>
<td class="content">
<!-- https://github.com/eclipse-jdt/eclipse.jdt.ui/pull/1367 -->
<p>The following compiler options are now supported only for Java 8 and above:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This <p> is unclosed and should be closed here.

<pre>
--source &lt;release&gt;
--target &lt;release&gt;
--release &lt;release&gt;
</pre>
<p>I.e., from Eclipse 4.33 onward, the Eclipse IDE and <code>ecj</code> will no longer be able to produce JRE 7 (and below) compliant byte code, as the options metioned above are supported only for Java 8+.</p>
<p>This is the equivalent of Java 21's <code>javac</code> only supporting those options for Java 8+.</p>
</td>
</tr>
<!-- ******************* End of Java Compiler ************************************* -->

<!-- ******************* Java Formatter ************************************* -->
Expand Down