I upgraded recently to the new Eclipse version (Oxygen). I downloaded the lombok.jar from the website and installed it. This is how the eclipse.ini
looks like a
For MacBook Pro users (e.g. running macOs Sierra v10.12.6), in order to install lombok on Eclipse Oxygen (4.7.0) or Photon (4.8.0), using Java 1.8 (1.8.0_144), just do the following actions:
java -jar lombok.jar
;/tools/ide/eclipse/jee-oxygen/Eclipse.app/Contents/Eclipse/eclipse.ini
.On the menu bar, go to Eclipse > About Eclipse and validate that lombok is installed:
Lombok v1.16.18 "Dancing Elephant" is installed. https://projectlombok.org/
Be sure to scroll the text window down since the installed Lombok version appears in the text above the row of icons.
Finally, add lombok to your project's build path according to the building tool you're using. For Maven, for instance, use the following dependency:
org.projectlombok
lombok
1.16.18
provided