Home > Mobile >  any downside to use latest Eclipse with my Java 8 project?
any downside to use latest Eclipse with my Java 8 project?

Time:12-09

The project I am working on is a Java 8 project. I haven't updated my Eclipse for years. The latest Eclipse required Java 11. I know I can point my project to Java 8. Are there any potential issues with doing so?

CodePudding user response:

The version of Java used by Eclipse does NOT depend on version of Java you are using for compilation the project.

E.g. you can run Eclipse on Java11 and setup it to build the project using Java8.

There is only downside I can see: using an old version of IDE you are loosing all new fancy features.

  • Related