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

Upgrade bundled eclipse to 2023-12 (4.30) #263

Open
jpraet opened this issue Dec 18, 2023 · 3 comments
Open

Upgrade bundled eclipse to 2023-12 (4.30) #263

jpraet opened this issue Dec 18, 2023 · 3 comments

Comments

@jpraet
Copy link

jpraet commented Dec 18, 2023

Could the bundled eclipse version be upgraded to 2023-12, in order to support the new language features introduced in JDK21?

https://eclipse.dev/eclipse/news/4.30/jdt.php#Java21

@rokkolesa
Copy link

This is a big problem if the code uses some preview features. It seems that using 2023-12 should fix that. We are also using spotless-maven-plugin to check the code on our CI/CD pipeline. When we specify the 2023-12 version in the maven plugin, the code is correctly checked.. but it completely fails to format the file using this plugin, where an older eclipse is bundled.

@krasa
Copy link
Owner

krasa commented Feb 20, 2024

Yes, but using an external Eclipse installation should help.

@rokkolesa
Copy link

That is true, but we do not want to force every developer to install eclipse.

Regardless, the 2023-12 version does not fix formatting of the preview features - I was mistaken before.

Is formatting of the preview features even enabled in eclipse?

For example, take a look at this example code:

try {
 process();
}
catch (Exception _)
{
   log.warn("Cannot process, but continuing anyway!");
}

As soon as this feature is used (the unnamed variable in the catch clause) somewhere in the class, the formatting fails completely. It does not format any lines.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants